V$RESERVED_WORDS
displays a list of all SQL keywords. To determine whether a particular keyword is reserved in any way, check the RESERVED
, RES_TYPE
, RES_ATTR
, and RES_SEMI
columns.
Column | Datatype | Description |
|
| Name of the keyword |
|
| Length of the keyword |
|
| Indicates whether the keyword cannot be used as an identifier ( |
|
| Indicates whether the keyword cannot be used as a type name ( |
|
| Indicates whether the keyword cannot be used as an attribute name ( |
|
| Indicates whether the keyword is not allowed as an identifier in certain situations, such as in DML ( |
|
| Indicates whether the keyword is a duplicate of another keyword ( |
Note:
1.
select keyword
from V$RESERVED_WORDS
where reserved = 'Y'
order by keyword;
! |
& |
( |
) |
* |
+ |
, |
- |
. |
/ |
: |
< |
= |
> |
@ |
ALL |
ALTER |
AND |
ANY |
AS |
ASC |
BETWEEN |
BY |
CHAR |
CHECK |
CLUSTER |
COMPRESS |
CONNECT |
CREATE |
DATE |
DECIMAL |
DEFAULT |
DELETE |
DESC |
DISTINCT |
DROP |
ELSE |
EXCLUSIVE |
EXISTS |
FLOAT |
FOR |
FROM |
GRANT |
GROUP |
HAVING |
IDENTIFIED |
IN |
INDEX |
INSERT |
INTEGER |
INTERSECT |
INTO |
IS |
LIKE |
LOCK |
LONG |
MINUS |
MODE |
NOCOMPRESS |
NOT |
NOWAIT |
NULL |
NUMBER |
OF |
ON |
OPTION |
OR |
ORDER |
PCTFREE |
PRIOR |
PUBLIC |
RAW |
RENAME |
RESOURCE |
REVOKE |
SELECT |
SET |
SHARE |
SIZE |
SMALLINT |
START |
SYNONYM |
TABLE |
THEN |
TO |
TRIGGER |
|
UNIQUE |
UPDATE |
VALUES |
VARCHAR |
VARCHAR2 |
VIEW |
WHERE |
WITH |
[ |
] |
^ |
| |
(space) |
Oracle data dictionary views
Oracle dynamic performance views
No comments:
Post a Comment