Often, I need to paste a list of numbers into the IN LIST()-Operator such as: WHERE col IN (...)
The proposed function "Paste comma separated" would need to:
- Enclose all values with apostrophe ('). (This can be done with all types of data: In case of "col" is of type number, the apostrophe does no harm, since Oracle implicitly converts into number.)
- Separate all values with comma
Thank you!
Example:
Instead of pasting:
1
2
3
this new function would do:
'1','2','3'
The proposed function "Paste comma separated" would need to:
- Enclose all values with apostrophe ('). (This can be done with all types of data: In case of "col" is of type number, the apostrophe does no harm, since Oracle implicitly converts into number.)
- Separate all values with comma
Thank you!
Example:
Instead of pasting:
1
2
3
this new function would do:
'1','2','3'