I would like to select some parameters in a column of my database. The issue that I have is that the column where I want to select the data is named "set".
SELECT * FROM database.table where set=5130;
"Set" is also a keyword in MySQL which leads to an error :
Error Code: 1064. You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'set=5130' at line 1
How should I bypass this issue ?