mysql中的insert语句怎么写 插入语句怎么写?

插入语句怎么写?Insert into table name values(默认值,“name”,“2011-04-15 12:22:25”)//默认值可以更改为nullnsert into 表名 v

插入语句怎么写?

Insert into table name values(默认值,“name”,“2011-04-15 12:22:25”)//默认值可以更改为null

nsert into 表名 values(default,"名字","2011-04-15 12:22:25") //default可以换成null

insert into 表名 (name,datetime) values("名字","2011-04-15 12:22:25")

//不指定列名的时候,是需要列出所有字段的值的。包括自增列,不然是会报错的~