Does Oracle have any builtin SQL syntax help.
I find I may have forgotten a few statements and sometimes have no Internet access.
I am using Oracle 11g.
Julien Vavasseur
10.2k2 gold badges29 silver badges47 bronze badges
-
1You can download Oracle SQL Reference. docs.oracle.com/cd/B28359_01/server.111/b28286/toc.htm. Can download as PDF.atokpas– atokpas2016年05月23日 12:45:55 +00:00Commented May 23, 2016 at 12:45
-
not SQL*Plus, but SQLcl can do that, ctrl+space to get next expected possible keywordsthatjeffsmith– thatjeffsmith2016年05月23日 14:25:53 +00:00Commented May 23, 2016 at 14:25
1 Answer 1
No
You can get a list of reserved words by typing help reserved words
, but that's about it.
answered May 23, 2016 at 14:24
lang-sql