I have a database where the date fields are just called "date". Since this is a reserved word, when referencing these fields I either quote the name, like
myTcursor."date" = date ()
or use the numbered notation.
But how can I access them in SQL ?
SELECT NAME, DATE FROM MYTABLE causes an error,
and trying ether 'NAME' or "NAME" creates a column called NAME containing the value NAME in each row.
I cannot rename the field without major problems, is there any workaround ? Thanks a lot.
myTcursor."date" = date ()
or use the numbered notation.
But how can I access them in SQL ?
SELECT NAME, DATE FROM MYTABLE causes an error,
and trying ether 'NAME' or "NAME" creates a column called NAME containing the value NAME in each row.
I cannot rename the field without major problems, is there any workaround ? Thanks a lot.