Possible Duplicate:
How do I escape reserved words used as column names? MySQL/Create Table
This should be an easy one to answer, I hope. I have a series of column names in various tables named things like T(x,y,t), T(x,y,t-1), T(x+1,y,t), etc. I know that having parentheses in column names is frowned upon, but how do I reference a name like this (with the table name) in the SELECT clause?
For example, I've tried things like
SELECT A.JDAY, 'B.T(x,y,t)'
FROM A, B
and
SELECT A.JDAY, B.'T(x,y,t)'
FROM A, B
...but neither of those seem to be working.