**ANSI SQL**
I have a field named DATE in my table.
How would I write a select statement choosing that field.
Select Date, Amount from <aTable>
The above doesn't work because Date is a key word.
My Table needs to look like:
Date Amount
---------- ------
06/03/2001 10.00
07/05/2001 5.35
.
.
.
03/18/1999 25.00
I have a field named DATE in my table.
How would I write a select statement choosing that field.
Select Date, Amount from <aTable>
The above doesn't work because Date is a key word.
My Table needs to look like:
Date Amount
---------- ------
06/03/2001 10.00
07/05/2001 5.35
.
.
.
03/18/1999 25.00