I want to paste the same text at the start of some lines of my document all at once.
[For example]
-Before-
'1','North America'
'2','South America'
'3','Europe'
-After-
INSERT INTO 'continent' ('id' ,'name') VALUES ('1','North America'
INSERT INTO 'continent' ('id' ,'name') VALUES ('2','South America'
INSERT INTO 'continent' ('id' ,'name') VALUES ('3','Europe'
Please tell me if there is a way of doing this.
Thanks!