① 如何使用sql语句向表中插入一行新数据

insert into 表(字段列表)
values(对应各字段的值列表)

如:

insert into tb_name(field1, field2)
values('aa','bb')