MySQL - 尝试插入 strings/numbers 时出现语法错误

MySQL - Syntax error when trying to insert strings/numbers

我收到以下错误:

1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '('text','text','text',1,2,3,4,5,6,7,' at line 4

尝试运行这个SQL命令时:

insert into `table`
VALUES
    (`col1`,`col2`,`col3`,`col4`,`col5`,`col6`,`col7`,`col8`,`col9`,`col10`,`col11`,`col12`,`col13`,`col14`)
    ('text','text','text',1,2,3,4,5,6,7,8,'text','text','text'),
    ('text','text','text',11,12,13,14,15,16,17,18,'text','text','text')

更新:我是个彻头彻尾的白痴,在 VALUES...

之前添加了列名
insert into `table`
(`col1`,`col2`,`col3`,`col4`,`col5`,`col6`,`col7`,`col8`,`col9`,`col10`,`col11`,`col12`,`col13`,`col14`)    
VALUES
('text','text','text',1,2,3,4,5,6,7,8,'text','text','text'),
('text','text','text',11,12,13,14,15,16,17,18,'text','text','text')
insert into `table`(`col1`,`col2`,`col3`,`col4`,`col5`,`col6`,`col7`,`col8`,`col9`,`col10`,`col11`,`col12`,`col13`,`col14`) 
VALUES('text','text','text',1,2,3,4,5,6,7,8,'text','text','text'),
('text','text','text',11,12,13,14,15,16,17,18,'text','text','text')
insert into `table`

(`col1`,`col2`,`col3`,`col4`,`col5`,`col6`,`col7`,`col8`,`col9`,`col10`,`col11`,`col12`,`col13`,`col14`)

VALUES

('text','text','text',1,2,3,4,5,6,7,8,'text','text','text')

,

('text','text','text',11,12,13,14,15,16,17,18,'text','text','text')