数据库的简单查询

一、检索一列或多列1.检索单独一列

select 列名 from 表名;

select order_num from orders;

2.检索多列数据

select 列 1,列 2... from 表名;

select order_num,order_date from orders; select order_date,order_num from orders;

3.查询所有字段

select * from 表名; select * from orders;

注:在生产环境中,坚决不允许使用 select *

二、去除查询结果中的重复值

1.select distinct 列 1,列 2... from 表名;

select distinct vend_id,prod_price from products;

注:distinct 关键对它后面跟的所有列都生效

三、使用 limit 子句控制显示结果条目数

1.select 列 1,列 2... from 表名 limit 需要显示的行数;

select prod_name from products limit 5;

2.select 列 1,列 2... from 表名 limit x,y;

注:1)x 是从第几行开始显示(包括 x),y 是显示的行数

  1. MariaDB 的行数是从第 0 行开始的

select prod_name from products limit 3,4;

  1. select 列 1,列 2... from 表名 limit 4 offset 3;

select prod_name from products limit 4 offset 3;

四、完全限定表名、列名

select 表名.列名 from 数据库名.表名;

 select orders.order_num from test.orders;

注:完全限定列名可以避免歧义(多个表中含有相同列)

完全限定表名可以实现跨数据库查询

五、注释三种形式:--、#、/* */

注:--后面与注释内容之间至少有一个空格

六、使用 order by 子句对查询结果进行排序(默认正序)desc降序

1.针对单独列进行排序 select 列名 from 表名 order by 列名按照此列进行排序;

select prod_name from products order by prod_name;

或 select 列名 1 from 表名 order by 列名 2;

select prod_name,prod_price from products order by prod_price;

注:通常 order by 子句中使用的列就是需要显示的列,然而用非检索的列排序也是完全合法的

2.针对多列进行排序按第一列排序如果第一列有重复指按第二列排

1)select 列 1,列 2 from 表名 order by 列 1,列 2;

select prod_id,prod_name,prod_price from products order by prod_price,prod_name;

2)select 列 1,列 2 from 表名 order by 1,2;按第1列排序,有重复按第2列排

select prod_id,prod_name,prod_price from products order by 3,2;

 3)降序排序(desc)

select 列 1,列 2 from 表名 order by 列 1 desc,列 2;

select prod_name,prod_price from products order by prod_price desc,prod_name;

注:desc 仅对其前面的列有效,其他后面没有 desc 的列仍然以正序排序

七、使用 order by 子句和 limit 子句显示最大/最小值1.显示最小值

select 列 1 from 表名 order by 列 1 limit 1;

select prod_price from products order by prod_price limit 1;

2.显示最大值 select 列 1 from 表名 order by 列 1 desc limit 1;

select prod_price from products order by prod_price desc limit 1;

八、where 子句

1.使用=操作符查询 select 列 1,列 2... from 表名 where 列 1='值';

select prod_name,prod_price from products where prod_name='fuses';

2.使用<操作符查询 select 列 1,列 2... from 表名 where 列 1<'值';

select prod_name,prod_price from products where prod_price < '10';

3.使用<>或!=操作符查询 select 列 1,列 2... from 表名 where 列 1<>'值';

select vend_id,prod_name from products where vend_id <> '1003';

select 列 1,列 2... from 表名 where 列 1!='值';

select vend_id,prod_name from products where vend_id != '1003';

 4.使用 between 操作符查询

select 列 1,列 2... from 表名 where 列 between 值 1 and 值 2;

select prod_name,prod_price from products where prod_price between 5 and 10;

注:between 和 and 为闭区间(即包含两边的值)

  1. 检索空值与非空值

1)检索空值

select 列 1,列 2... from 表名 where 列 is null;

select cust_id,cust_email from customers where cust_email is null;

2)检索非空值 select 列 1,列 2... from 表名 where 列 is not null;

select cust_id,cust_email from customers where cust_email is not null;

  1. 使用 and 和 or 操作符查询

1)使用 and 操作符(

select 列 1,列 2... from 表名 where 限定条件 1 and 限定条件 2 select vend_id,prod_id,prod_name,prod_price from products where vend_id=1003 and prod_price <=10;

 2)使用 or 操作符(或)

select 列 1,列 2... from 表名 where 限定条件 1 or 限定条件 2 select vend_id,prod_name,prod_price from products where vend_id=1002 or vend_id=1003;

3)and 要比 or 的优先级高

select vend_id,prod_name,prod_price from products where vend_id=1002 or vend_id=1003 and prod_price >= 10;

select vend_id,prod_name,prod_price from products where (vend_id=1002 or vend_id=1003) and prod_price >= 10;

7.使用 in 操作符查询

select 列 1,列 2 from 表名 where 列 in (值 1,值 2,值 3...); select vend_id,prod_name,prod_price from products where vend_id in (1002,1003);1002或1003

select vend_id,prod_name,prod_price from products where vend_id in (1002,1003) and prod_price >=10;

注:当你使用很长的值列表选项时,IN 操作符语法更清晰易读更容易管理优先级顺序比一系列 or 操作符执行的快可以创建较为动态的 where 子句

  1. 使用 not 操作符查询 select vend_id,prod_name,prod_price from products where vend_id not in (1002,1003);

  • 使用 like 操作符配合通配符查询

select 列 1,列 2 from 表名 where 列 like '关键字与通配符';

select prod_id,prod_name from products where prod_name like 'jet%';

select prod_id,prod_name from products where prod_name like '_ ton anvil';

%:匹配多个字符

—:匹配一个字符

十、使用 regexp 操作符配合正则表达式查询

select 列 1,列 2... from 表名 where 列 regexp '关键字与正则表达式';

1.使用.进行匹配匹配多个字符

select prod_id,prod_name from products where prod_name regexp '.000';

2.如果想要强制区分大小写,可以使用关键字 binary select prod_id,prod_name from products where prod_name regexp binary 'JetPack .000';

3.执行 or 匹配| 或

select prod_id,prod_name from products where prod_name regexp '1000|2000|3000';

  1. 使用字符集匹配 []从中选中一个

select prod_id,prod_name from products where prod_name regexp '[1235] ton';

5.匹配特殊字符“.”

select vend_name from vendors where vend_name regexp '\\.';

注:使用\\转义符,去掉了.的特殊含义(匹配任意一个字符)

  1. 使用元字符匹配查询 select prod_name from products where prod_name regexp '\\([0-9] sticks?\\)';TNT  (?匹配前一个字符0次或者多次

+ 匹配前一个字符一次或多次)

select prod_name from products where prod_name regexp '[[:digit:]]{4}';

注:上述 sql 语句等同于 select prod_name from products where prod_name regexp '[0-9][0-9][0-9][0-9]';

select prod_name from products where prod_name regexp '^[0-9\\.]'

十一、子查询

多个表间的 select 语句的嵌套查询例:检索所有订单包含物品 TNT2 的客户信息customers  orders  ordersitems

1.不使用子查询时

1)先查询所有包含物品 TNT2 的订单的订单号

select order_num,prod_id from orderitems where prod_id='TNT2';

2)再查询上述订单号的订单是哪个客户下的

select cust_id,order_num from orders where order_num in(20005,20007);

 3)最后查询上述客户的详细信息

select cust_id,cust_name,cust_contact from customers where cust_id in (10001,10004);

2.使用子查询(嵌套查询)

select cust_id,cust_name,cust_contact from customers where cust_id in (select cust_id from orders where order_num in(select order_num from orderitems where prod_id='TNT2'));

:子查询最多不超过 15 级,一般使用时不超过 2 级

大多数子查询都可以更改为连接查询

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/796153.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

正排索引 vs 倒排索引 - 搜索引擎具体原理

阅读导航 一、正排索引1. 概念2. 实例 二、倒排索引1. 概念2. 实例 三、正排 VS 倒排1. 正排索引优缺点2. 倒排索引优缺点3. 应用场景 三、搜索引擎原理1. 宏观原理2. 具体原理 一、正排索引 1. 概念 正排索引是一种索引机制&#xff0c;它将文档或数据记录按照某种特定的顺序…

016——DHT11驱动开发(基于I.MX6uLL)

目录 一、 模块介绍 1.1 简介 1.2 电路描述 1.3 通信协议 二、 驱动程序 三、 应用程序 四、 上机实验 一、 模块介绍 1.1 简介 DHT11 是一款可测量温度和湿度的传感器。比如市面上一些空气加湿器&#xff0c;会测量空气中湿度&#xff0c;再根据测量结果决定是否继续加…

Cortex-M7 内存映射模型

1 前言 如图1所示&#xff0c; Cortex-M7最大支持4GB的内存寻址&#xff0c;并对内存映射(memory map)做了初步的规定&#xff0c;将整个内存空间划分为了多个内存区域(region)。每个内存区域有着既定的内存类型(memory type)和内存属性(memory attribute)&#xff0c;这两者决…

物理层习题及其相关知识(谁看谁不迷糊呢)

1. 对于带宽为50k Hz的信道&#xff0c;若有4种不同的物理状态来表示数据&#xff0c;信噪比为20dB 。&#xff08;1&#xff09; 按奈奎斯特定理&#xff0c;信道的最大传输数据速率是多少&#xff1f;&#xff08;2&#xff09; 按香农定理&#xff0c;信道的最大传输数据速度…

基于Springboot+Vue实现前后端分离酒店管理系统

一、&#x1f680;选题背景介绍 &#x1f4da;推荐理由&#xff1a; 近几年来&#xff0c;随着各行各业计算机智能化管理的转型&#xff0c;以及人们经济实力的提升&#xff0c;人们对于酒店住宿的需求不断的提升&#xff0c;用户的增多导致酒店管理信息的不断增多&#xff0c;…

ICLR 2024 | 联邦学习后门攻击的模型关键层

ChatGPT狂飙160天&#xff0c;世界已经不是之前的样子。 新建了免费的人工智能中文站https://ai.weoknow.com 新建了收费的人工智能中文站https://ai.hzytsoft.cn/ 更多资源欢迎关注 联邦学习使多个参与方可以在数据隐私得到保护的情况下训练机器学习模型。但是由于服务器无法…

华为分红出炉,人均超50w!

华为分红 770 亿 4 月 2 日&#xff0c;北京金融资产交易所官网发布了《华为投资控股有限公司关于分配股利的公告》。 公告指出&#xff1a;经公司内部有权机构决议&#xff0c;拟向股东分配股利约 770.945 亿元。 众所周知&#xff0c;华为并不是一家上市公司&#xff0c;这里…

C++从入门到精通——初步认识面向对象及类的引入

初步认识面向对象及类的引入 前言一、面向过程和面向对象初步认识C语言C 二、类的引入C的类名代表什么示例 C与C语言的struct的比较成员函数访问权限继承默认构造函数默认成员初始化结构体大小 总结 前言 面向过程注重任务的流程和控制&#xff0c;适合简单任务和流程固定的场…

自定义实现shell/bash

文章目录 函数和进程之间的相似性shell打印提示符&#xff0c;以及获取用户输入分割用户的输入判断是否是内建命令执行相关的命令 全部代码 正文开始前给大家推荐个网站&#xff0c;前些天发现了一个巨牛的 人工智能学习网站&#xff0c; 通俗易懂&#xff0c;风趣幽默&#…

Day30 线程安全之窗口售票问题(含代码)

Day30 线程安全之窗口售票问题&#xff08;含代码&#xff09; 一、需求&#xff1a; 铁道部发布了一个售票任务&#xff0c;要求销售1000张票&#xff0c;要求有3个窗口来进行销售&#xff0c; 请编写多线程程序来模拟这个效果&#xff08; 注意&#xff1a;使用线程类的方式…

【Qt 学习笔记】详解Qt中的信号和槽

博客主页&#xff1a;Duck Bro 博客主页系列专栏&#xff1a;Qt 专栏关注博主&#xff0c;后期持续更新系列文章如果有错误感谢请大家批评指出&#xff0c;及时修改感谢大家点赞&#x1f44d;收藏⭐评论✍ 详解Qt中的信号与槽 文章编号&#xff1a;Qt 学习笔记 / 12 文章目录…

红黑树的平衡之道:深入解析右旋操作的原理与实践

红黑树的平衡之道&#xff1a;深入解析右旋操作的原理与实践 一、 红黑树旋转的背景二、右旋&#xff08;RIGHT-ROTATE&#xff09;的原理三、右旋&#xff08;RIGHT-ROTATE&#xff09;的算法步骤四、右旋&#xff08;RIGHT-ROTATE&#xff09;的伪代码五、右旋&#xff08;RI…

ctf_show笔记篇(web入门---jwt)

目录 jwt简介 web345&#xff1a; web346&#xff1a; web347&#xff1a; web348: web349&#xff1a; web350&#xff1a; jwt简介 JSON Web Token&#xff08;JWT&#xff09;通常由三部分组成 Header&#xff08;头部&#xff09;&#xff1a;包含了两部分信息&…

蓝桥杯备考3

P8196 [传智杯 #4 决赛] 三元组 题目描述 给定一个长度为 n 的数列 a&#xff0c;对于一个有序整数三元组 (i,j,k)&#xff0c;若其满足 1≤i≤j≤k≤n 并且&#xff0c;则我们称这个三元组是「传智的」。 现在请你计算&#xff0c;有多少有序整数三元组是传智的。 输入格式…

LRU的原理与实现(java)

介绍 LRU的英文全称为Least Recently Used&#xff0c;即最近最少使用。它是一种内存数据淘汰算法&#xff0c;当添加想要添加数据而内存不足时&#xff0c;它会优先将最近一段时间内使用最少的数据淘汰掉&#xff0c;再将数据添加进来。 原理 LRU的原理在介绍中就已经基本说…

机器学习模型——逻辑回归

https://blog.csdn.net/qq_41682922/article/details/85013008 https://blog.csdn.net/guoziqing506/article/details/81328402 https://www.cnblogs.com/cymx66688/p/11363163.html 参数详解 逻辑回归的引出&#xff1a; 数据线性可分可以使用线性分类器&#xff0c;如果…

蓝桥真题--路径之谜DFS解法

路径之谜 思路 前置知识&#xff1a;深度搜索模板搜索所有可以找的路径&#xff0c;将走过的靶子减去一走到最后一个格子的时候&#xff0c;直接去判断所有的靶子只有除最后一个位置的靶子&#xff0c;其余靶子都归零的时候&#xff0c;判断一个最后一个位置横坐标和纵坐标的靶…

尚硅谷html5+css3(1)

1.基本标签&#xff1a; <h1>最大的标题字号 <h2>二号标题字号 <p>换行 2.根标签<html> 包括<head>和<body> <html><head><title>title</title><body>body</body></head> </html> 3…

MATLAB - 用命令行设计 MPC 控制器

系列文章目录 前言 本例演示如何通过命令行创建和测试模型预测控制器。 一、定义工厂模型 本示例使用《使用 MPC Designer 设计控制器》中描述的工厂模型。创建工厂的状态空间模型&#xff0c;并设置一些可选的模型属性&#xff0c;如输入、状态和输出变量的名称和单位。 % co…

正确使用@Resource

目录 1 怎么使用Resource&#xff1f;1.0 实验环境1.1 通过字段注入依赖1.2 bean property setter methods &#xff08;setter方法&#xff09; 2 打破岁月静好&#xff08;Resource takes a name attribute&#xff09;2.1 结论2.2 那我不指定呢&#xff1f;【结论&#xff1…