I would like use the following sql statement in my code:
SELECT ..., DATA.EXT_ID AS NUMBER, ... FROM DATA;
But I can't since "NUMBER" is a keyword. Is there any way around this? Thanks!
I would like use the following sql statement in my code:
SELECT ..., DATA.EXT_ID AS NUMBER, ... FROM DATA;
But I can't since "NUMBER" is a keyword. Is there any way around this? Thanks!
Use double quotes around the keyword:
SELECT DATA.EXT_ID AS "NUMBER" FROM DATA;