I am executing a mysql query like this:
Select * from "User";
It returns:
There is an error in your SQL syntax; check the manual for your MySQL server version for the correct syntax to use near "User" on line 1
Error with double quotes"
, can I leave the select statement unchanged and let mysql handle the double quotes?
Excerpted from this article:
When I personally test, I must do this:
I think there is no other way.