I have a table named \'test\'
It contains a column named \'AND\'
For that I use the following queries
insert into test values (\'a\',\'abc\')
If you use select setement using "" it select a given sting so you have to give a column name like in mssql you have to use
select [AND] from test;
or in mysql syntex select AND from test;
AND