In SQL developer if I type below statement and press ctrl + space
, the list of all column names are displayed.
select * from mytable where
How to achieve the same in PL/SQL developer version 11.1?
In SQL developer if I type below statement and press ctrl + space
, the list of all column names are displayed.
select * from mytable where
How to achieve the same in PL/SQL developer version 11.1?
PL/sql developer has this feature... but:
the default key combination for invoking code-completion is F6, not CTRL+SPACE Why did they choose this key I have no idea. Luckily you can change all keyboard shortcuts in the program preferences
it can complete table names, but for fields it works only if you have already typed at least "mytable." press after the "." character and it will look up the fields of mytable.
"mytable" in point 2 can be also a table alias, if you have assigned an alias to the table you are querying:
select t.<press F6 here> from mytable t
this code completion works also for stored procedure arguments, procedure names within packages, etc...