1).从 FROM 指定的[表中],查询出[所有的]数据。*表示[所有列]
SELECT * FROM 表名称
如:(查询users表中所有数据)
SELECT * FROM users
2).从 FROM 指定的[表中],查询出指定 列名称 (字段)的数据。
SELECT 列名称 FROM 表名称
如:(查询users表中username,password数据)
SELECT username,password FROM users
INSERT INTO table_name (列1,列2,...) VALUES (值1,值2,....)
如:向 users 表中,插入新数据,username 的值为 tony password 的值为 123456
insert into users (username, password) values ('tony', '123456')
1).更新一个数据
UPDATE 表名称 SET 列名称 = 新值 WHERE 列名称 =某值
如:将id为1的用户密码,更新为888888
update users set password='888888' where id=4
2).更新多个数据
update 表名称 set 列名称 = 新值,列名称 = 新值 where 列名称 =某值
如:更新 id 为 2 的用户,把用户密码更新为 admin123 同时,把用户的状态更新为 1
update users set password='admin123',status=1 where id-2
update from 表名称 where 列名称 = 值
如:删除 users 表中, id 为 4 的用户
delete from users where id=4
1).查询语句中的 WHERE 条件
SELECT 列名称 FROM 表名称 WHERE 列 运算符 值
如:
查询 status 为 1 的所有用户
SELECT * FROM users WHERE status=1
查询 id 大于 2的所有用户
SELECT * FROM users WHERE id>2
查询 username 不等于 admin 的所有用户
SELECT * FROM users WHERE username<> 'admin'
2).更新语句中的 WHERE 条件
UPDATE 表名称 SET 列=新值 WHERE 列 算符 值
3).删除语句中的 WHERE 条件
DELETE FROM 表名称 WHERE 列 运算符 值
1).AND 表示必须同时满足多个条件,相当于 JavaScript 中的 && 运算符,例如 ifa !== 10 && a!== 20)
使用 AND 来显示所有状态为0且id小于3的用户
select * from users where status=0 and id<3
2).OR 表示只要满足任意一个条件即可,相当于 JavaScript 中的|运算符,例如 if(a !== 10a !== 20)
使用 or 米显示所有状态为1 或 username 为 zs 的用户
select * from users where status=1 or username='zs?
1).默认按照升序对记录进行排序,也可以使用 ASC关键字
对users表中的数据,按照 status 宁段进行升序排序
select * from users order by status
2).按照降序对记录进行排序,可以使用 DESC关键字
按照 id 对结果进行降序的排序 (desc 表示降序排序 asc 表示升序排序)
select * from users order by id desc
3).多重排序
对 users 表中的数据,先按照 status 进行降序排序,再按照 username 字母的顺序,进行升序的排序
select * from users order by status desc, username asc
select count(*) from 表名 where 条件
使用 count(*) 米统计 users 表中,状态为0用户的总数量
select count(*) from users where status=0