MySQL中有哪些数据查询语句

一、基本概念(查询语句)

①基本语句

1、“select * from 表名;”,—可查询表中全部数据;2、“select 字段名 from 表名;”,—可查询表中指定字段的数据;3、“select distinct 字段名 from 表名;”,—可对表中数据进行去重查询。4、“select 字段名 from 表名 where 查询条件;”,—可根据条件查询表中指定字段的数据;

②条件查询

1)比较运算符:>, =, <=, =, !=,

查询大于18岁的信息

select * from students where age>18;select id, name,gender from students where age>18;

查询小于18岁的信息

select * from students where age<18;

查询年龄为18岁的所有学生的名字

select * from students where age=18;

2)逻辑运算符:and, or, not

–18到28之间的学生信息

select * from students where age>18_and age<28:

–18岁以上的女性

select * from students where age>18 and gender="女";select * from students where age>18 and gender=2;

–18以上或者身高查过180(包含)以上

select * from students where age>18 or height>=180;

不在18岁以上的女性这个范围内的信息

select * from students where not (age>18 and gender=2);

年龄不是小于或者等于18并且是女性

select * from students where (not age<=18) and gender=2;

3)模糊查询:like, rlike

% 替换1个或者多个
_ 替换1个
查询姓名中 以“小”开始的名字

select name from students where name="小";select name from students where name like"小%";

查询姓名中有“小”所有的名字

select name from students whece name like "%小%";

查询有2个字的名字

select name from students where name like "__";

查询有3个字的名字

select name from students where name like "__";

查询至少有2个字的名字 select name from

students where name like "__%";

rlike正则
查询以周开始的姓名

select name from students where name rlike "^周.*";

查询以周开始、伦结尾的姓名

select name from students where name rlike "^周.*伦$";

4)范围查询:in,not in,between…and,not between…and

查询年龄为18、34的姓名

select name, age from students where age=18 or age=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);

between … and …表示在一个连续的范围内
查询年龄在18到34之间的的信息

select name,age from students where age between 18 and 34;

not between … and …表示不在一个连续的范围内
查询年龄不在在18到34之间的的信息

select * from students where age not between 18 and 34;

空判断

判空 is null
查询身高为空的信息

select *from students where height is null/NULL/Null;

判非空is not null

select * from students where height is not null;

排序:order_by

–查询年龄在18到34岁之间的男性,按照年龄从小到大排序

select * from students where (age between 18 and 34) and gender=1; select * from students where (age between 18 and 34) and gender=1 order by age; select * from students where (age between 18 and 34) and gender=1 order by age asc;

查询年龄在18到34岁之间的女性,身高从高到矮排序

select * from students where (age between18 and 34) and gender=2 order by height desc;

order by多个字段
查询年龄在18到34岁之间的女性,身高从高到矮排序,如果身高相同的情况下按照年龄从小到大排序

select * from students where (age between 18 and 34) and gender=2 order by height desc,age asc;

查询年龄在18到34岁之间的女性,身高从高到矮排序,如果身高相同的情况下按照年龄从小到大排序,如果年龄也相同那么按照id从大到小排序

select * from students where (age between 18 and 34) and gender=2 order by height desc,age asc, id desc;

按照年龄从小到大、身高从高到矮的排序

select * from students order by age asc,height desc;

分组:group_by, group_concat():查询内容, having

where :是对整个数据表信息的判断;
having:是对于分组后的数据进行判断
–group by
按照性别分组,查询所有的性别

select gender from students group by gender;

–计算每种性别中的人数

select gender, count(*) from students group by gender;

where是在group by 前面
–计算男性的人数

select count(*) from students where gender='男';

–group_concat(…)
查询同种性别中的姓名

select gender,group_concat(name) from students group by gender;

having :having是在group by后面
查询平均年龄超过30岁的性别,以及姓名

select gender ,avg(age) from students group by gender having avg(age) > 30;

查询每种性别中的人数多于2个的信息

select gender,count(*) from students group by gender having count(*) > 2;

– 查询每组性别的平均年龄

select gender,avg(age) from students group by gender;

分页: limit

limit start,count   (start:表示从哪─个开始;count:表示数量)即limit(第N页-1)*每个的个数,每页的个数;limit在使用的时候,要放在最后面.

限制查询出来的数据个数

select *from students where gender=1 limit 2;

查询前5个数据

select* from students limit 0,5;

查询id6-10(包含)的书序

select * from students limit 5,5;

每页显示2个,第1个页面

select * from students limit 0,2;

每页显示2个,第2个页面

select * from students limit 2,2;

每页显示2个,第3个页面

select * from students limit 4,2;

每页显示2个,第4个页面

select * from students limit 6,2;

每页显示2个,显示第6页的信息,按照年龄从小到大排序

select * from students order by age asc limit 10,2;

– 如果重新排序了,那么会显示第一页

select * from students where gender=2 order by height des limit 0,2;

5)聚合函数:count(), max(), min(), sum(), avg(), round()

聚合函数
-总数– count
-查询男性有多少人,女性有多少人

select count(*) from students where gender=1;select count(*) as 男性人数 from students where gender=1;select count(*) as 女性人数 from students where gender=2;

-最大值-最小值
– max –min
一查询最大的年龄

select max (age) from students;

–查询女性的最高身高

select max (height) from students where gender=2;

-求和
–sum
-计算所有人的年龄总和

select sum ( age) from students;

–平均值
– avg
–计算平均年龄

select avg(age) from students;

–计算平均年龄

select sum ( age) / count(* ) from students;

–四舍五入round ( 123.23 ,_1)保留1位小数
–计算所有人的平均年龄,保留2位小数

select round (sum(age)/count(*),2) from students; select round ( sum(age)/count(*),3) from students ;

–计算男性的平均身高保留2位小数

select round(avg (height),2) from students where gender=1; select name,round(avg(height),2) from students where gender=1;

6)连接查询 :inner join, left join, right join

inner join
select … from 表 A inner join表B;

select * from students inner join classes;

查询有能够对应班级的学生以及班级信息

select * from students inner join classes on students.cls_id=classes.id;

按照要求显示姓名、班级

select students.*, classes.name from students inner join classes on students.cls_id=classes.id;select students.name,classes.name from students inner join classes on students.cls_id=classes.id;

给数据表起名字

select s.name,c.name from students as s inner join classes as c on s.cls_id=c.id;

查询有能够对应班级的学生以及班级信息,显示学生的所有信息,只显示班级名称

select s.*,c.name from students as s inner join classes as c on s.cls_id=c.id;

在以上的查询中,将班级姓名显示在第1列

select c.name,s.* from students as s inner join classes as c on s.cls_id=c.id;

查询有能够对应班级的学生以及班级信息,按照班级进行排序
select c.xxx s.xxx from student as s inner join clssses as c on … order by …;

select c.name,s.* from students as s inner join classes as c on s.cls_id=c.id order by c.name;

当时同一个班级的时候,按照学生的id进行从小到大排序

select c.name,s.* from students as s inner join classes as c on s.cls_id=c.id order by c.name,s.id;

left join
查询每位学生对应的班级信息

select * from students as s left join classes as c on s.cls_id=c.id;

查询没有对应班级信息的学生
– select … from xxx as s left join xxx as c on… where …
– select … from xxx as s left join xxx as c on… . … having …

select * from students as s left join classes as c on s.cls_id=c.id having c.id is null;select * from students as s left join classes as c on s.cls_id=c.id where c.id is null;

left join是按照左边的表为基准和右边的表进行查询,查到就显示,查不到就显示为null

补充

查询所有字段:select * from 表名; 
查询指定字段:select 列1,列2,… from 表名; 
使用 as 给字段起别名: select 字段 as 名字…. from 表名; 
查询某个表的某个字段:select 表名.字段 …. from表名; 
可以通过 as 给表起别名: select 别名.字段 …. from 表名 as 别名; 
消除重复行: distinct 字段

注意:WHERE子句中是不能用聚集函数作为条件表达式的!

二、总结

1、普通查询

(1)命令:select * from ;

(2)命令:select from ;

2、去重查询(distinct)

命令:select distinct from

3、排序查询(order by)

升序:asc

降序:desc

降序排列命令:select from order by desc

不加desc一般默认为升序排列

4、分组查询(group by)

命令:select , Sum(score) from group by

假设现在又有一个学生成绩表(result)。要求查询一个学生的总成绩。我们根据学号将他们分为了不同的组。

命令:

select id, Sum(score) from result group by id;

现在有两个表学生表(stu)和成绩表(result)。

5.等值查询

当连接运算符为“=”时,为等值连接查询。

现在要查询年龄小于20岁学生的不及格成绩。

select stu.id,score from stu,result where stu.id = result.id and age < 20 and score < 60;

等值查询效率太低

6.外连接查询

①语法

select f1,f2,f3,....from table1 left/right outer join table2on 条件;

②左外连接查询,例如

select a.id,scorefrom  (select id,age from stu where age < 20) a (过滤左表信息)left join  (select id, score from result where score < 60) b (过滤右表信息)on a.id = b.id;

左外连接就是左表过滤的结果必须全部存在。右表中如果没有与左表过滤出来的数据匹配的记录,那么就会出现NULL值

③右外连接查询,例如

select a.id,scorefrom  (select id,age from stu where age < 20) a (过滤左表信息)right join  (select id, score from result where score < 60) b (过滤右表信息)on a.id = b.id;

右外连接就是左表过滤的结果必须全部存在

7.内连接查询

①语法

select f1,f2,f3,....from table1 inter join table2on 条件;

②例如

select a.id,scorefrom  (select id,age from stu where age < 20) a (过滤左表信息)inner join  (select id, score from result where score < 60) b (过滤右表信息)on a.id = b.id;

8.合并查询

在图书表(t_book)和图书类别表(t_bookType)中

①.union

使用union关键字是,数据库系统会将所有的查询结果合并到一起,然后去掉相同的记录;

select id from t_book   union select id from t_bookType;

②.union all

使用union all,不会去除掉重复的记录;

select id from t_book   union all select id from t_bookType;

以上就是MySQL中有哪些数据查询语句的详细内容,更多请关注创想鸟其它相关文章!

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/163211.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2025年10月31日 21:45:09
下一篇 2025年10月31日 21:50:31

相关推荐

  • 网络进化!

    Web 应用程序从静态网站到动态网页的演变是由对更具交互性、用户友好性和功能丰富的 Web 体验的需求推动的。以下是这种范式转变的概述: 1. 静态网站(1990 年代) 定义:静态网站由用 HTML 编写的固定内容组成。每个页面都是预先构建并存储在服务器上,并且向每个用户传递相同的内容。技术:HT…

    2025年12月24日
    000
  • 为什么多年的经验让我选择全栈而不是平均栈

    在全栈和平均栈开发方面工作了 6 年多,我可以告诉您,虽然这两种方法都是流行且有效的方法,但它们满足不同的需求,并且有自己的优点和缺点。这两个堆栈都可以帮助您创建 Web 应用程序,但它们的实现方式却截然不同。如果您在两者之间难以选择,我希望我在两者之间的经验能给您一些有用的见解。 在这篇文章中,我…

    2025年12月24日
    000
  • CSS如何实现任意角度的扇形(代码示例)

    本篇文章给大家带来的内容是关于CSS如何实现任意角度的扇形(代码示例),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。 扇形制作原理,底部一个纯色原形,里面2个相同颜色的半圆,可以是白色,内部半圆按一定角度变化,就可以产生出扇形效果 扇形绘制 .shanxing{ position:…

    2025年12月24日
    000
  • html中怎么运行sql语句_html中运行sql语句方法【教程】

    必须通过后端服务执行SQL操作。一、PHP与MySQL交互:使用PHP脚本在服务器端连接数据库,执行查询并嵌入HTML输出,避免硬编码凭证。二、Ajax调用API:前端通过JavaScript向后端API发送请求,服务端执行SQL并返回JSON数据,前端动态渲染结果。三、SQLite与JavaScr…

    2025年12月23日
    000
  • html手机怎么运行_手机运行html方法【教程】

    1、使用手机浏览器可直接打开本地HTML文件,只需通过文件管理器点击文件并选择浏览器打开即可预览;2、借助Spck Editor等专用编辑器应用能实现实时编辑与预览,适合开发调试;3、对于含JavaScript或需服务器支持的动态内容,应安装KSWEB类应用搭建本地服务器,再通过http://loc…

    2025年12月23日
    000
  • html如何连接_连接HTML与数据库或API接口【接口】

    HTML无法直接连接数据库或调用API,需借助JavaScript fetch、PHP中转、Node.js后端或Python Flask等服务端技术实现动态数据交互。 如果您希望在网页中动态获取数据,HTML本身无法直接连接数据库或调用API接口,必须借助服务器端语言或JavaScript等客户端技…

    2025年12月23日
    000
  • HTML如何添加批注功能_评论系统实现方案【教程】

    可实现HTML文本批注功能的四种方案:一、基于HTML5自定义属性与JS的静态批注;二、遵循W3C标准的语义化批注;三、嵌入Utterances或Giscus等第三方评论系统;四、自建AJAX评论后端+前端组件。 如果您希望在HTML页面中为特定文本添加可交互的批注功能,或构建一个轻量级的评论系统,…

    2025年12月23日
    000
  • html怎么在本地服务器运行_本地服务器运html方法【指南】

    使用本地服务器运行HTML文件需通过HTTP协议,可选Python命令启动服务、Node.js的http-server、VS Code的Live Server插件或XAMPP等工具,确保AJAX等功能正常。 要在本地服务器运行HTML文件,不能直接双击打开,因为部分功能(如AJAX、API调用)需要…

    2025年12月23日
    200
  • phpstudy怎么运行本地html_phpstudy运行本地html方法【教程】

    确保Apache或Nginx服务已启动;2. 将HTML文件放入WWW目录;3. 浏览器访问localhost即可运行页面。 在使用 PHPStudy 时,运行本地 HTML 文件非常简单。PHPStudy 是一个集成了 Apache/Nginx、PHP 和 MySQL 的集成环境工具,主要用于本地…

    2025年12月23日
    000
  • HTML页面如何生成短链接_URL压缩转换方法【攻略】

    可借助第三方服务、API调用、Nginx反向代理、PHP脚本或GitHub Pages五种方式将HTML页面URL转为短链接:1.用bit.ly等平台手动缩短;2.调用Bitly API批量生成;3.配置Nginx rewrite规则重定向;4.部署PHP+MySQL实现动态跳转;5.利用GitHu…

    2025年12月23日
    000
  • Java JDBC中SQL INSERT语句的常见语法错误及修复指南

    本文旨在解决java jdbc应用中常见的sql `insert`语句语法错误,特别是因缺少括号而导致的错误。我们将深入分析错误信息,指出问题根源,并提供正确的sql语句范例及java jdbc `preparedstatement`的使用方法。文章还将涵盖jdbc数据库操作的最佳实践、错误处理和调…

    2025年12月23日
    000
  • wampserver怎么运行html程序_wampserver运行html程序方法【教程】

    使用WampServer运行HTML程序需将文件放入www目录,启动Apache服务后通过http://localhost/项目路径访问,确保在本地服务器环境下正确解析运行。 如果您在本地开发网页,但无法正确查看HTML文件的运行效果,可能是由于未通过本地服务器环境进行访问。WampServer 提…

    2025年12月23日
    000
  • 平板怎么运行html代码_平板运行html代码步骤【指南】

    可在平板上通过四种方式查看HTML效果:一、用浏览器直接打开本地.html文件;二、使用JSFiddle等在线编辑器实时预览;三、安装Acode等编程应用离线编写并预览;四、通过KSWEB搭建本地服务器运行含动态内容的页面。 如果您希望在平板设备上查看或测试HTML代码的效果,但不确定如何操作,则可…

    2025年12月23日
    000
  • html上怎么运行php代码吗_html中运行php代码方法【教程】

    要使PHP代码在HTML中执行,必须通过支持PHP的服务器环境。首先将文件保存为.php格式并部署到配置好PHP模块的服务器(如Apache)根目录,通过http://localhost访问;或修改服务器配置(如.htaccess)令.html文件解析PHP;推荐使用.php文件混合HTML与PHP…

    2025年12月23日
    000
  • html怎么用sublime运行php_sublime运行html中php方法【教程】

    可在Sublime Text中通过配置PHP环境变量并创建Build System运行PHP代码,或使用PHP内置服务器、XAMPP等集成环境结合浏览器预览实现解析与调试。 如果您在使用Sublime Text编辑HTML或PHP文件时,希望直接运行PHP代码并查看输出结果,但发现无法像在浏览器中那…

    2025年12月23日
    000
  • PHP表单提交后防止页面刷新并保留数据与错误提示的教程

    本教程旨在解决php表单提交时页面刷新、用户输入数据丢失以及错误提示显示不佳的问题。核心方法是利用服务器端php的`$_post`变量,在表单提交并进行服务器端验证失败后,不进行页面重定向,而是直接在当前页面重新渲染表单,同时回填用户之前输入的数据并显示验证错误信息,从而显著提升用户体验。 引言:优…

    2025年12月23日
    000
  • 如何通过JavaScript/jQuery获取HTML元素内容并与PHP后端交互

    本教程详细阐述了如何利用JavaScript和jQuery从HTML页面中动态获取特定` `标签的文本内容,并进一步探讨了如何将这些前端捕获的数据通过AJAX技术安全地传递给PHP后端进行处理,例如执行SQL查询。文章涵盖了从前端事件触发、数据捕获到后端数据接收、处理及安全防护的全流程,旨在提供一个…

    2025年12月23日
    000
  • php怎么在html5中运行_php在html5中运行方法【教程】

    PHP在服务器端运行,通过嵌入HTML5文件生成动态内容。1. PHP与HTML5协同工作:PHP代码嵌入.html或.php文件,由服务器解析后输出纯HTML至浏览器。2. 创建index.php文件,使用标准HTML5结构,在其中插入等PHP代码,实现动态内容展示。3. 搭建本地环境可选用XAM…

    2025年12月23日 好文分享
    000
  • epp4怎么运行html文件_EPP4运行html文件步骤【指南】

    首先确认EPP4已安装并启动Apache服务,将HTML文件放入www目录后,通过http://localhost/路径访问即可预览页面,确保文件位置与路径正确。 打开EPP4后运行HTML文件并不复杂,只需正确操作即可在浏览器中预览页面效果。EPP4(Easy PHP Pack 4)是一个集成开发…

    2025年12月23日
    000
  • html怎么用浏览器运行php_浏览器运html中php文件方法【教程】

    正确答案是搭建本地开发环境。需安装XAMPP等集成工具,将.php文件放入htdocs目录,通过http://localhost访问,确保服务器解析PHP并返回HTML给浏览器显示。 PHP 是服务器端语言,不能直接通过浏览器像 HTML 那样双击打开运行。你看到的“在浏览器中运行 PHP”其实是指…

    2025年12月23日
    000

发表回复

登录后才能评论
关注微信