MySQL查询操作

举报
指剑 发表于 2022/09/03 00:08:02 2022/09/03
【摘要】 MySQL查询语句: select * from 表名; ##查询出该表名下所有数据 *代表所有字段 简单的查询语句方式 select [字段列表 / 表达式 / 函数] from 表名; 1 ...

MySQL查询语句:

select * from 表名; ##查询出该表名下所有数据

*代表所有字段

简单的查询语句方式

select [字段列表 / 表达式 / 函数]  from 表名;

  
 
  • 1

查询多个字段

select 字段1,字段2 from 表名;

  
 
  • 1

表达式

select 表达式[算术表达式] from 表名;

  
 
  • 1

例如:此处有一张工资表 payroll:其中包含2个字段:

name && wages

  
 
  • 1

查询一年的工资:

select name,wages*12 from payroll;

  
 
  • 1

去重:
在需要去重的字段前加上 distinct
例如:test表中有多个相同数据字段名为:tt

select distinct tt from test;

  
 
  • 1

函数:

where条件查询:

where后面一般跟表达式(主要是条件表达式)
条件表达式可以是 等值比较 大于 小于 大于等于 小于等于 不等于
where 条件表达式

语法:

select * from 表名 where 字段 = 字段值;

  
 
  • 1

例1:
book中有3本书 price 都为10

select * from book where price = 10;

  
 
  • 1

例2:
查询book表中price小于10的书籍:

select * from book where price < 10;

  
 
  • 1

例3:
查询book表中price大于10的书籍:

select * from book where price > 10;

  
 
  • 1

例4:
查询book表中price不等于10的书籍:

select * from book where price <> 10;

  
 
  • 1

多条件查询:

并且 关键字 and
或者 关键字 or
in关键字 in 代表在这个取值中只要有一个匹配符合条件;
not in 不在这个范围区间之内的;
查询book表中大于10且小于20的书:

select * from book where price >10 and price < 20;

  
 
  • 1

查询book表中大于10且小于20,并且日期为2010-9-10的书:

select * from book where price >10 and price < 20 and date = '2010-9-10';

  
 
  • 1

查询book表中大于20的或者小于10的:

select * from book where price < 10 or price > 20;

  
 
  • 1

in关键字 in 代表在这个取值中只要有一个匹配符合条件;相当于 多个 or 条件

select * from book where price in(10,20,30);

  
 
  • 1

not in 不在这个区间范围内:

select * from book where price not in(10,20,30);

  
 
  • 1

between ... and .... 相当于大于等于 小于等于

select * from book where price between 10 and 20;

  
 
  • 1

在mysql中 NULL 不等于 空 也就是 price 不能等于 null 不能这样查询
判断一个字段的数值是否为空,需要用到关键字 is;
判断不为空 需要用到关键字 not is

例如 查询免费书籍,也就是 price 为null

select * from book where price is null;

  
 
  • 1

##不能写成 select * from book where price = null;

查询字符串长度

select length(字符串名) from 表名 ;

  
 
  • 1

例:

select length(name) from book where num = 1 ;

  
 
  • 1

查询num为1 的name字段长度;

文章来源: blog.csdn.net,作者:指剑,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/fly1574/article/details/88882223

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。