Hi,
does SQL Developer provide a copy and paste trick to paste text as a comma-separated expression list suitable for use in a SQL IN clause?
For example, I would like to copy the following lines of text:
FOO
BAR
BAZ
and then being able to paste it in SQL Developer like this, without resorting to search/replace:
'FOO',
'BAR',
'BAZ'
(Note the quotes around each line and the commas after each line.)
If SQL Developer doesn't already allow this trick... how can I submit a new feature request?
Thanks