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
I have column named key which is a reserved word in MySQL.
key
If you don't use a backtick ``` in you SQL query then will error.
My SQL that was build by this library was SELECT * FROM secure_holiday_feature WHERE key = '2' which didn't give any result.
SELECT * FROM secure_holiday_feature WHERE key = '2'
This one did SELECT * FROM secure_holiday_feature WHERE key = 2.
SELECT * FROM secure_holiday_feature WHERE
= 2
It also messes up the ->update() query.
->update()
Kind regads,
Jaime
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have column named
key
which is a reserved word in MySQL.If you don't use a backtick ``` in you SQL query then will error.
My SQL that was build by this library was
SELECT * FROM secure_holiday_feature WHERE key = '2'
which didn't give any result.This one did
SELECT * FROM secure_holiday_feature WHERE
key= 2
.It also messes up the
->update()
query.Kind regads,
Jaime
The text was updated successfully, but these errors were encountered: