Code:
select max(bob) from table_name
You can, in fact, create a table with a column named "max(bob)" by enclosing the column name in double quotes. However if you do this, the statements"
Code:
select "max(bob)" from table_name
select max(bob) from table_name
select "max(bob)" from table_name
Leave a comment: