We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The common basic usage is fairly simple to translate:
GROUP_CONCAT( field_name SEPARATOR 'some_separator' )
GROUP_CONCAT( field_name, 'some_separator' )
Technically the MySQL implementation is has more options, but I suspect the above covers the majority of uses.
The text was updated successfully, but these errors were encountered:
This should be similar to rewriting the INTERVAL keyword
sqlite-database-integration/wp-includes/sqlite/class-wp-sqlite-translator.php
Line 2213 in 8a4efbe
Sorry, something went wrong.
No branches or pull requests
The common basic usage is fairly simple to translate:
GROUP_CONCAT( field_name SEPARATOR 'some_separator' )
GROUP_CONCAT( field_name, 'some_separator' )
Technically the MySQL implementation is has more options, but I suspect the above covers the majority of uses.
The text was updated successfully, but these errors were encountered: