I'm programming in Eclipse and i have a SQL script that got multiple lines:
SELECT * FROM
.... (bla bla)
... (bla bla )..
... (bla bla bla bla)
I have to add the double quotes like this:
" SELECT * FROM "
+ ".... (bla bla) "
+ "... (bla bla ).."
+ "... (bla bla bla bla) "
Is there any SHORTCUT to do this in Eclipse?
EDITED:
I have a SQL script that got like 50 lines (for examp.):
line 1: SELECT * FROM
line 2: HR_EMPLOYEES
line 3: ... (bla bla)
.
.
.
line 50: AND NAME like 'AP%'
I have to do in every line this:
+ " (CODE SQL) "
+ " (CODE SQL) "
MANUALLY.
Is there any shortcut to do this ( + " " ) in eclipse java language?