mysql条件查询
查询表中的某些数据
SELECT SNo,Age,Dept FROM S;
查询全部信息:
select*from S;#但是尽量不要写*会影响效率(尽量用下面的)
select SNo,SN,Sex,Age,Dept from S;
设置别名:
select Dept as'所属专业'from S;#as可以省略
去重复【关键字distinct】
select distinct Dept as'所属专业'from S;
利用where进行查询:
select SN from S where Dept='计算机';
条件查询代码:
select *from S
#数据库的查询
#select 字段 from 表名 where 条件(可以多个条件)
# 字段用*表示所有字段(字段可以设置多个)
#设置别名select 字段 as 别名
create table
mysql条件查询最先出现在Python成神之路。
共有 0 条评论