MySQL查询

as 可以为字段起别名
as 可以为表起别名(用来区分有相同字段的不同表)

 

例子:

        

 select distinct 可以去重查询

where 比较运算查询

条件查询 

比较运算符

        >、<、>=、<=、!=、<>

逻辑运算符

        and、or、not

模糊查询(where name like 要查询的数据)

% 替换任意个、_ 替换1个

 范围查询

 

 例子:

例子:
-- in (1, 3, 8)表示在一个非连续的范围内
		-- 查询 年龄为18、34的姓名
		select name,age from students where age in (18,34);

		-- not in 不非连续的范围之内
		-- 年龄不是 18、34岁的信息
		select name,age from students where age not in (18,34);

		(注意)select name from students where not age in (18,34);


		-- between ... and ...表示在一个连续的范围内
		-- 查询 年龄在18到34之间的的信息
		select * from students where age between 18 and 34;
		
		-- not between ... and ...表示不在一个连续的范围内
		-- 查询 年龄不在在18到34之间的的信息
		select * from students where age not between 18 and 34;
		select * from syudents where age not between 18 and 3
  -- 失败的 select * from students where age not (between 18 and 34);
		

空值判断

        判断为空:is null        判断为非空:is not null

 排序查询     order by

select * from 表名 order by 列1 asc|desc  [,列2 asc|desc ]

 聚合函数

 

 group by 分组查询

 limit分页查询

语法: limit 起始页,记录数

select * from students limit 3,2

 连接查询——内连接

外连接--- 左连接   |   右连接

自连接

子查询

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值