SQLBuilder
SQLBuilder copied to clipboard
A powerful, fast, cross-platform SQL Builder for PHP. Convert your structured data into SQL queries with a fluent style interface and targeting on all the mainstream database (MySQL, PostgreSQL, SQLit...
``` sql SELECT ... FROM table... WHERE column = 5 WHERE column > 5 WHERE column IS NULL WHERE column IN (1, 2, 3) WHERE column NOT IN (1, 2,...
String Comparison Functions http://dev.mysql.com/doc/refman/5.6/en/string-comparison-functions.html#operator_like
``` sql SELECT 'David_' LIKE 'David|_' ESCAPE '|'; ``` http://dev.mysql.com/doc/refman/5.6/en/string-comparison-functions.html#operator_like