Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MySqlDriver driver knows about subqueries now. (#265)
As MySQL/MariaDB clearly does support subqueries. This enables proper building of queries like... ``` $table('table_a')->where('table_a.column_one IN', $table('table_b')->select('value')) ``` ... without executing the inner query first. See https://dev.mysql.com/doc/refman/8.0/en/subqueries.html and https://mariadb.com/kb/en/subqueries/
- Loading branch information