“date” as a column name
问题 I have a table called calendars. One of its columns is named 'date' When I want to select the date column it gives error ORA-01747 namely invalid table.column. select date from calendars I guess this happens because 'date' is a reserved word for pl/sql. The problem is it's not even possible to change the column name : alter table calendars rename column date to date_d Result is: ORA-00904 error: invalid identifier. What do you advice? Thanks. 回答1: Have you tried select calendars.date from