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\')
Its a SO old question and solved. Read here more.
But still you can Try this :
select your_tablename.column_name from table_name;
Your code :-
select test.AND from test;