insertinto语句insertinto语句用于向表格中插入新的行。语法insert into 表名称 values (值1, 值2,....)也可以指定所要插入数据的列:insert into table_name (列1, 列2,...) values (值1, 值2,....)