Are there any characters or symbols that reserved keywords can be
enclosed with in Oracle (9i) to prevent them from being interpreted as
control statements or functions?
MSSQL has this functionality with "[]".
For example, in MSSQL, this statement returns an error :
SELECT NameLine1 AS Name FROM database1
But this one does not :
SELECT NameLine1 AS [Name] FROM database1
Does Oracle have any way to accomplish this?
enclosed with in Oracle (9i) to prevent them from being interpreted as
control statements or functions?
MSSQL has this functionality with "[]".
For example, in MSSQL, this statement returns an error :
SELECT NameLine1 AS Name FROM database1
But this one does not :
SELECT NameLine1 AS [Name] FROM database1
Does Oracle have any way to accomplish this?
Comment