Module: lib/query_builder/mysql

Form mysql query

Max supported SELECT query: SELECT [columns] FROM [table] WHERE [where conditions] GROUP BY [columns] ORDER BY [order by columns] HAVING [having condition] LIMIT [limit and offset]; Max supported INSERT query: INSERT INTO [table] ([columns]) VALUES ([values]), ([values]) ON DUPLICATE KEY UPDATE [conditions]; Max supported UPDATE query: UPDATE [table] SET [column=value], [column=value] WHERE [where conditions] ORDER BY [order by columns] LIMIT [limit]; Max supported DELETE query: DELETE FROM [table] WHERE [where conditions] ORDER BY [order by columns] LIMIT [limit];

Classes

MySQLQueryBuilderKlass