select
-
查询user表中的所有数据
select * from user
-
查询user表中的所有
username
和password
数据select username,password from user
insert into 表名 (字段名,…) values (字段值,…)
-
在user表中插入
username
为tony stark
|password
为098123
的数据insert into user (username,password) values ('tony stark', '098123')
where
条件语句
1多个条件可以用and或者or
- 查看
id
小于3
或者username
为ls
的数据信息select * from user where id<3 or username='ls'
- 查看
id
小于3
并且username
为ls
的数据信息select * from user where id<3 and username='ls'
update 表名 set 字段=字段值 (where 条件)
- 更新
id
为1的数据的password
值为888888
update user set password='888888' where id=1
delete from 表名 (where 条件)
- 删除user表中id为4的数据
delete from user where id=4
count(*)
查询数量
select count(*) from 表名 (where 条件)
- 查询
user
表中status
为0
的总条数select count(*) from user where status=0
as
重命名
- 查询
user
表中status
为0
的总条数select count(*) as total from user where status=0