Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MySqlDriver driver knows about subqueries now. #265

Merged
merged 1 commit into from Oct 14, 2020
Merged

MySqlDriver driver knows about subqueries now. #265

merged 1 commit into from Oct 14, 2020

Commits on Oct 14, 2020

  1. MySqlDriver driver knows about subqueries now.

    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/
    smuuf committed Oct 14, 2020
    Copy the full SHA
    133fad1 View commit details
    Browse the repository at this point in the history