I have a file like this:
INSERT INTO `example`
(`name`, `location`, `height`)
VALUES
('A', '', ''),
('B', '', ''),
('C', '', '');
I want to fill in the middle set of quote marks (the ones under location
) so that I end up with
INSERT INTO `example`
(`name`, `location`, `height`)
VALUES
('A', 'one', ''),
('B', 'two', ''),
('C', 'three', '');
What's a good way to do that? Aligning the third column of quotes isn't necessary, but preferred.