数据库连接查询

news2024/11/27 14:34:43

一、联合查询

1.使用 union 连接两个 select 语句进行联合查询

select 列 1,列 2... from 表名 where 条件 union select 列 1,列 2... from 表名 where 条

件;

select vend_id,prod_id,prod_name,prod_price from products where prod_price <= 5 union select vend_id,prod_id,prod_name,prod_price from products where vend_id=1002 or vend_id=1003;

注:1)上述语句等同于

select vend_id,prod_id,prod_name,prod_price from products where prod_price <= 5 or vend_id in (1002,1003);

      2)一个 union 必须包含两个或两个以上 select 语句在 union 中的每个查询都必须包含相同的列表达式或者聚合函数

列数据类型必须是兼容的,他们不必是完全相同的类型,但必须是 MariaDB 能够转换的

union 从查询结果集中自动移除任何重复行,如果要返回所有匹配结果,用 union all代替 union

当使用 union 联合查询时只可以使用一个 order by 子句,并且必须出现在最后一个 select 语句后面

union 也适用于对不同的表进行联合查询

二、全文本搜索

1.限定条件

1)在创建表时需要指定哪些字段为全文本搜索列

2)在创建表时需要指定支持全文本搜索的数据库引擎(Aria)

注:指定的支持全文本搜索的列,MariaDB 会自动给这一列建立索引来提高全文本搜索的查询速度。(字典的目录)

使用 like 操作符配合通配符也可以实现相关关键字的查询。但速度没有全文本搜索快,查询的结果不如全文本搜索的结果智能(全文本搜索可以根据不同单词的排位值显示结果)

2.select 列名 from 表名 where match(列名) against('关键字');

select note_text from productnotes where match(note_text) against('rabbit');

越靠近每段开头,越先显示

注:如果使用 like 操作符查询

select note_text from productnotes where note_text like '%rabbit%';

3.扩展查询把rabbit显示的行 再进行查询

select 列名 from 表名 where match(列名) against('关键字' with query expansion)

select note_text from productnotes where match(note_text) against('rabbit' with query expansion扩展);

 4.布尔文本搜索必须包含哪个关键字 必须不包含哪些

select 列名 from 表名 where match(列名) against('关键字' in boolean mode);

select note_text from productnotes where match(note_text) against ('+heavy -rope*' in boolean mode);

+ 表示必须包含 

select note_text from productnotes where match(note_text) against ('+rabbit +bait' in boolean mode);

三、连接查询

1.内连接等值连接

1)查询所有供货商的 ID,名称及其供应的产品名称和产品价格:

select vendors.vend_id,vend_name,prod_name,prod_price from vendors,products where vendors.vend_id=products.vend_id;

select vendors.vend_id,vend_name,prod_name,prod_price from vendors inner join products on vendors.vend_id=products.vend_id;

2)查询所有订购了 TNT2 的客户 ID 及客户名称和客户联系人

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'));

select customers.cust_id,cust_name,cust_contact from customers,orders,orderitems where customers.cust_id=orders.cust_id and orders.order_num=orderitems.order_num and orderitems.prod_id='TNT2';

别名查询:

select c.cust_id,cust_name,cust_contact from customers as c,orders as o,orderitems as oi where c.cust_id=o.cust_id and o.order_num=oi.order_num and oi.prod_id='TNT2';

查找的是关键字所在行的记录

从右往左执行,从内往外执行

2.交叉连接

在连接查询时不通过 where 子句指定条件,返回的结果集成为笛卡尔乘积

3.对列和表使用别名

select c.cust_id,cust_name,cust_contact from customers as c,orderitems as oi,orders as o where c.cust_id=o.cust_id and o.order_num=oi.order_num and oi.prod_id='TNT2';

4.自连接

现有一产品被发现存在问题(物品 ID 为 DTNTR),因此要检索该产品供应商生产的所有产品

1)子查询

select vend_id,prod_id from products where vend_id in(select vend_id from products where prod_id='DTNTR');

2)自连接

select p1.vend_id,p1.prod_id from products as p1,products as p2 where p1.vend_id=p2.vend_id and p2.prod_id='DTNTR';

5.外连接

1)左外连接查询所有客户的订单信息(以左边的表为基准)

select c.cust_id,o.order_num from customers as c left outer join orders as o on c.cust_id=o.cust_id;

2)右外连接查询所有订单是哪些客户下的

select c.cust_id,o.order_num from customers as c right outer join orders as o on c.cust_id=o.cust_id;

如果是两个表里都有的列  查询的时候要制定是哪个表里的列

四、函数

1.sql 支持的函数类型

1)进行字符串操作的文本函数

2)用来对数值数据算数运算的数值函数

3)用来操作日期和时间以及从这些值中提取特定的组件的日期和时间函数

4)返回和使用 DBMS 相关的信息的系统函数

注:MariaDB 的日期格式:yyyy-mm-dd;也支持两位数年份,将 00-69 视为 2000-2069

2.计算字段

对数据库中存储的数据进行重新的格式化,格式化后的列被称为计算字段

3.拼接字段将值连接起来(通过追加的方式),构成一个单一的更长的值

4.使用 concat()、trim()函数创建拼接字段

要生成供应商报表并且需要列出供应商的位置来作为供应商名称的一部分,即格式为

vend_name(vend_country),并命名为 vend_title

select concat(rtrim(vend_name),'(',rtrim(vend_country),')') as hebing from vendors order by hebing;

rtrim 去掉右边空格 ltrim 为去掉右侧空格trim 为去掉有左右的空格

5.MariaDB 支持的运算操作符

加:+ 减:- 乘:* 除:/

查询 20005 号订单的所有产品 ID、数量、单价、总价

select order_num,prod_id,quantity,item_price,quantity*item_price as zongjia from orderitems where order_num=20005 order by zongjia;

6.调用 upper(),将供应商名称大写lower小写

select vend_name,upper(vend_name) as daxie from vendors;

7.调用 soundex(),查询名字发音类似的联系人

select cust_name,cust_contact from customers where soundex(cust_contact) =soundex('Y.Lie');

8.调用 date(),查询所有 2011 年 9 月的订单

select * from orders where date(order_date) between '2011-09-01' and '2011-09-30';

注:可以使用 year()和 month()来实现上述内容

select * from orders where year(order_date)='2011' and month(order_date)='9';

9.聚合函数

1)查询供应商为 1003 提供的产品的平均值

select vend_id,avg(prod_price) as pingjun from products where vend_id='1003';

2)查询 customers 中的客户总数

select count(*)某一列中有几行) as zongshu from customers;

3)查询 customers 中拥有 email 地址的客户总数

select count(cust_email) as zongshu from customers;

4)查询 products 表中产品的最高价和最低价

select max(prod_price) as max_price from products;

select min(prod_price) as min_price from products;

5)计算去掉重复行的平均值

select avg( distinct prod_price) as pingjunzhi from products;

6)组合聚合函数

select count(*) as prod_count,max(prod_price) as price_max,min(prod_price) as price_min,avg(prod_price) as price_avg from products;

10.分组过滤***

1)分组:group by 子句

过滤:having 子句分组之后过滤

2)查询每个供应商提供的产品数量

select vend_id,count(*/prod_id) as zongshu from products group by vend_id根据vind_id 分组;

3)查询至少有两个订单的客户

select cust_id,count(*哪一列都可以) as dingdanshu from orders group by cust_id having dingdanshu >= '2';

4)查询拥有产品数大于或等于 2,且产品价格大于或等于 10 的供应商 select vend_id,count(*) as prod_count from products where prod_price >= 10 group by vend_id having prod_count >=2;

注:where 用于在分组前过滤数据,having 用于在分组后过滤数据

5)查询订单号和所有订单中订单总价大于或者等于 50 的订单

select order_num,sum(quantity*item_price) as order_count from orderitems group by order_num having order_count >= 50;

11.select 语句及其顺序

select ... from ... where ... group by ... having ... order by ... limit;

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

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

相关文章

【Leetcode】拓扑排序—课程表系列

有向无环图DAG图示&#xff1a; 拓扑排序结果&#xff1a;{2,3,5,1,7,4,6} {3,2,1,5,7,6,4} 不唯一 拓扑排序结果满足&#xff1a;对于图中的每条有向边(u,v)&#xff0c;u要排序在v之前&#xff1b; 应用&#xff1a;判断有向图中是否有环&#xff0c;可以生成拓…

FreeRTOS学习 -- 再识

工作中一直使用FreeRTOS进行着开发&#xff0c;但是没有进行过系统的总结过。现在将快速使用几天时间将FreeRTOS相关知识点加以总结。 官网&#xff1a; https://www.freertos.org/zh-cn-cmn-s/ 参看资料&#xff1a; 正点原子 STM32F1 FreeRTOS开发手册_V1.2.pdf The FreeRTOS…

揭秘!兆欧表测量接地电阻的步骤是什么?

兆欧表&#xff0c;又被称为绝缘电阻测试仪或摇表&#xff0c;是一种可携式仪器&#xff0c;用于测量电气设备、电缆、电机绕组和其他导体之间&#xff0c;以及导体与地之间的绝缘电阻。该仪表能够提供较高的直流电压&#xff08;通常为500V、1000V、2500V甚至更高&#xff09;…

第45期 | GPTSecurity周报

GPTSecurity是一个涵盖了前沿学术研究和实践经验分享的社区&#xff0c;集成了生成预训练Transformer&#xff08;GPT&#xff09;、人工智能生成内容&#xff08;AIGC&#xff09;以及大语言模型&#xff08;LLM&#xff09;等安全领域应用的知识。在这里&#xff0c;您可以找…

LeetCode 使数组连续的最少操作数

地址&#xff1a;. - 力扣&#xff08;LeetCode&#xff09; 难度&#xff1a;困难 题目描述&#xff1a;给你一个整数数组 nums 。每一次操作中&#xff0c;你可以将 nums 中 任意 一个元素替换成 **任意 **整数。 如果 nums 满足以下条件&#xff0c;那么它是 连续的 &#x…

竞赛 协同过滤电影推荐系统

文章目录 1 简介1 设计概要2 课题背景和目的3 协同过滤算法原理3.1 基于用户的协同过滤推荐算法实现原理3.1.1 步骤13.1.2 步骤23.1.3 步骤33.1.4 步骤4 4 系统实现4.1 开发环境4.2 系统功能描述4.3 系统数据流程4.3.1 用户端数据流程4.3.2 管理员端数据流程 4.4 系统功能设计 …

YOLOv8的多分类模型如何计算准确率(Accuracy)、精确率(Precision)、召回率(recall)和F1-Score模型评估参数

《博主简介》 小伙伴们好&#xff0c;我是阿旭。专注于人工智能、AIGC、python、计算机视觉相关分享研究。 ✌更多学习资源&#xff0c;可关注公-仲-hao:【阿旭算法与机器学习】&#xff0c;共同学习交流~ &#x1f44d;感谢小伙伴们点赞、关注&#xff01; 《------往期经典推…

算法刷题Day27 | 39. 组合总和、40.组合总和II、131.分割回文串

目录 0 引言1 组合总和1.1 我的解题 2 组合总和II2.1 解题 3 分割回文串3.1 切割3.2 总结&#xff1a;分割和组合的区别 &#x1f64b;‍♂️ 作者&#xff1a;海码007&#x1f4dc; 专栏&#xff1a;算法专栏&#x1f4a5; 标题&#xff1a;算法刷题Day27 | 39. 组合总和、40.…

【Entity Framework】EF配置文件设置详解

【Entity Framework】EF配置文件设置详解 文章目录 【Entity Framework】EF配置文件设置详解一、概述二、实体框架配置部分三、连接字符串四、EF数据库提供程序五、EF侦听器六、将数据库操作记录到文件中七、Code First默认连接工厂八、数据库初始值设定项 一、概述 EF实体框架…

Taro打包生成不同目录

使用taro init创建taro项目时&#xff0c;taro默认打包目录是&#xff1a; /config/index.js outputRoot:dist默认的目录&#xff0c;编译不同平台代码时就会覆盖掉&#xff0c;为了达到多端同步调试的目的&#xff0c;这时需要修改默认生成目录了&#xff0c;通过查看官方文…

Redis 群集

目录 一、集群的三种模式 1.1 Redis 主从复制 主从复制的作用&#xff1a; 主从复制流程&#xff1a; 主从复制的过程/原理 搭建Redis 主从复制 1.2 Redis 哨兵模式 哨兵模式原理: 哨兵模式的作用&#xff1a; 哨兵模式的结构 故障转移机制&#xff1a; 搭建Redis …

[尚硅谷 flink] 基于时间的合流——双流联结(Join)

文章目录 8.1 窗口联结&#xff08;Window Join&#xff09;8.2 **间隔联结&#xff08;Interval Join&#xff09;** 8.1 窗口联结&#xff08;Window Join&#xff09; Flink为基于一段时间的双流合并专门提供了一个窗口联结算子&#xff0c;可以定义时间窗口&#xff0c;并…

虚拟主机WordPress网站安装教程

一般的企业官网&#xff0c;简站WordPress小编都推荐使用虚拟主机&#xff0c;用虚拟主机搭建一般的WordPress企业官网足够用了。最主要的好处是使用虚拟主机可以省去了主机维护的成本。 下面是以简站WordPress主题在虚拟主机搭建企业官网为例子&#xff0c;写的一个教程&…

无人机详细操作方法:

不同型号的无人机操作方法会有所区别&#xff0c;以云卓无人机为例&#xff0c;为你介绍其操作方法&#xff1a; 1. 打开机臂&#xff0c;安装护架、红外避障头&#xff0c;盖上后盖&#xff1b; 2. 打开飞机和遥控器&#xff0c;将两个油门的外八节进行校准&#xff1b; 3.…

Echarts-实现地图并轮播地图信息

目录 ./map-geojson/jinhua.json./CenterMap.vue./center.vue 使用地图组件效果 ./map-geojson/jinhua.json {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":330…

ZLMediaKit ubantu 下编译

1、获取代码 #国内用户推荐从同步镜像网站gitee下载 git clone --depth 1 https://gitee.com/xia-chu/ZLMediaKit cd ZLMediaKit #千万不要忘记执行这句命令 git submodule update --init二、依赖库 Debian系(包括ubuntu&#xff09;系统下安装依赖的方法&#xff1a; #除了…

什么是 SD NAND?

什么是 CS 创世 SD NAND 呢&#xff1f;很多的朋友一直想知道这个问题。 什么是 CS 创世 SD NAND 呢&#xff1f;很多的朋友一直想知道这个问题。今天我们雷龙也精心准备了 SD NAND 的一个介绍。其实很多工程师朋友对 CS 创世 SD NAND 有很多称呼。比如&#xff1a;贴片式 T 卡…

Ethernet 汇总

Ethernet系统 硬件最小系统 CPU:可以是复杂的芯片,也可以是小的单片机DMA:用于减轻CPU负担,搬运数据系统Memory<->FIFOMAC:可以集成在芯片里面,用于CPU和PHY之间的通信MII:接口用于MAC和PHY的通信,包括控制MDIO和数据DataPHY:模拟器件,最底层,数据收发源头软件…

AI智慧医疗:探索机器学习在医疗保健中的应用与进展

&#x1f9d1; 作者简介&#xff1a;阿里巴巴嵌入式技术专家&#xff0c;深耕嵌入式人工智能领域&#xff0c;具备多年的嵌入式硬件产品研发管理经验。 &#x1f4d2; 博客介绍&#xff1a;分享嵌入式开发领域的相关知识、经验、思考和感悟,欢迎关注。提供嵌入式方向的学习指导…