Migrate database engine from MySQL to SQLite: Difference between revisions

From LemonWiki共筆
Jump to navigation Jump to search
(Created page with "== Notes == * Remove database name from SQL query: SQLite will consider the database name as table name * Replace MySQL [https://dev.mysql.com/doc/refman/8.0/en/string-functio...")
(No difference)

Revision as of 17:59, 28 October 2019

Notes

  • Remove database name from SQL query: SQLite will consider the database name as table name
  • Replace MySQL CHAR_LENGTH function with SQLite Length function[1]


References