向表中插入数据
- 插入一行数据
insert into 表名(字段1,字段2,字段3) values(数值1,数值2,数值3);
- 插入多行数据
insert into 表名(字段1,字段2,字段3) values(数值1,数值2,数值3),(数值4,数值5,数值6),(数值7,数值8,数值9);
查询表中的数据
- 查询tab01表中,id=1数据
select * from tab01 where id=1;
- 查询tab01表中,id字段中包含1的数据
select * from tab01 where id like ‘%1%‘;
- 查询tab01表中,id字段中包含1的数据,按id降序排序
select * from tab01 where id like ‘%1%‘ order by id desc;
- 查询tab01表中,id字段中包含1的数据,按id升序排序
select * from tab01 where id like ‘%1%‘ order by id asc;
- 查询tab01表中,id字段中包含1的数据,按id降序排序,取id最大的三个数据
select * from tab01 where id like ‘%1%‘ order by id desc limit 3;