I have a database where some columns have HTML tags in them, IE
Rot<sub>1</sub>
I try running queries, like
SELECT Rot<sub>1</sub> FROM chem.thermTable;
But I get an error message in my SQL syntax. Putting the column name in quotes simply returns the column name. Typing
SELECT * FROM chem.thermTable;
Works but returns other values I don't need as well. I searched and haven't found any solutions. Thanks for your help!
Edit: I am trying to query
SELECT Method,Basis,Rot<sub>1</sub> from chem.thermtable;