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 want to use reserved word as column, you must use backtick around the reserved word column.....
In your case, you have to do like this:
select `AND' from test;