Oracle and SQL Server reserved keywords
问题 I need a list of Oracle Database 10g and SQL Server 2008 reserved key words. My application performs DDL statements, thus I need to validate the entered table-, column names, etc. against the reserved words. I know that I can copy and paste the words from the websites: Oracle 10g and SQL Server 2008 But I would prefer a SQL command so that the keywords can be loaded dynamically. For oracle there exists the command: SELECT KEYWORD FROM V$RESERVED_WORDS ORDER BY KEYWORD ASC ; It's just strange