Sample data
INSERT INTO `qUj_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
('nav_menu_options', 'a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}', 'yes'),
('_options_en_US_h_section1_label', 'field_66ac4f4535309', 'off'),
('_options_en_US_h_section1_title', 'field_66ac4f523530a', 'off'),
('_options_en_US_h_section13_preview', 'field_66f15be9ceab9', 'off');
Using VS Code regex replace:
\(\d{1,4},\s
Replace with
(
Then delete a first column import:
`option_id`,
The final result:
INSERT INTO `qUj_options` (`option_name`, `option_value`, `autoload`) VALUES
('nav_menu_options', 'a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}', 'yes'),
('_options_en_US_h_section13_preview', 'field_66f15be9ceab9', 'off');