Mysql exists用法小結
EXISTS用于檢查子查詢是否至少會返回一行數據,該子查詢實際上并不返回任何數據,而是返回值True或False。
EXISTS 指定一個子查詢,檢測行的存在。語法:EXISTS subquery。參數 subquery 是一個受限的 SELECT 語句 (不允許有 COMPUTE 子句和 INTO 關鍵字)。結果類型為 Boolean,如果子查詢包含行,則返回 TRUE。
示例一張活動配置主表activity_main,通過act_code來唯一標明一場活動,活動舉辦地點適配表activity_area,通過act_code與主表進行關聯,活動獎品表activity_sku,通過act_code與主表進行關聯。
活動主表CREATE TABLE `activity_main` (`id` bigint(20) NOT NULL AUTO_INCREMENT,`act_code` varchar(255) NOT NULL COMMENT ’活動代碼’,`act_name` varchar(255) NOT NULL COMMENT ’活動名稱’,PRIMARY KEY (`id`),UNIQUE KEY `uniq_code` (`act_code`)) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT=’活動主表’活動在哪些網站舉辦的適配表
CREATE TABLE `activity_area` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `act_code` varchar(255) NOT NULL COMMENT ’活動代碼’, `area` varchar(255) NOT NULL COMMENT ’參與此活動的網站’, PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT=’活動適配的網站列表’活動獎品表
CREATE TABLE `activity_sku` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `act_code` varchar(255) NOT NULL COMMENT ’活動代碼’, `sku` varchar(255) NOT NULL COMMENT ’活動贈送的商品’, PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT=’活動贈品表’
比較使用 EXISTS 和 IN 的查詢這個例子比較了兩個語義類似的查詢。第一個查詢使用 IN 而第二個查詢使用 EXISTS。注意兩個查詢返回相同的信息。
# 查詢體重秤select * from activity_main where act_code in (select act_code from activity_sku where sku = ’翎野君的體脂稱’)# 查詢體重秤select * from activity_main a where exists (select 1 from activity_sku b where a.act_code = b.act_code and b.sku = ’翎野君的體脂稱’)# 模糊查詢B-BEKO英國嬰兒推車select * from activity_main where act_code in (select act_code from activity_sku where sku like ’%B-BEKO%’)# 模糊查詢B-BEKO英國嬰兒推車select * from activity_main a where exists (select 1 from activity_sku b where a.act_code = b.act_code and b.sku like ’%B-BEKO%’)# 查詢在博客園舉辦的活動select * from activity_main where act_code in (select act_code from activity_area where area = ’博客園’)# 查詢在博客園舉辦的活動select * from activity_main a where exists (select 1 from activity_area b where a.act_code = b.act_code and b.area = ’博客園’)# 在博客園舉辦活動且活動獎品為華為手機的活動信息select * from activity_main where act_code in (select act_code from activity_area where area = ’博客園’ and act_code in (select act_code from activity_sku where sku = ’華為P30Pro’))# 內層的exists語句只在當前where語句中生效,最終是否返回,要根據最外層的exists判斷,如果是 true(真)就返回到結果集,為 false(假)丟棄。select * from activity_main a where exists (select 1 from activity_area b where a.act_code = b.act_code and b.area = ’博客園’ and exists(select 1 from activity_sku c where a.act_code = c.act_code and c.sku = ’華為P30Pro’))
以上就是Mysql exists用法小結的詳細內容,更多關于Mysql exists用法的資料請關注好吧啦網其它相關文章!
相關文章:
1. 使用mysql記錄從url返回的http GET請求數據操作2. 在SQL Server 2000中恢復Master數據庫3. mysql 模糊查詢 concat()的用法詳解4. Mybatis傳入List實現批量更新的示例代碼5. SQL語句中的ON DUPLICATE KEY UPDATE使用6. DB2中多種常用功能的解決方法(1)7. SQL Server 2000中生成XML的小技巧8. Oracle建表與創建序列詳細實例9. SQL Server 2005-如何在SQL Server用戶自訂函數中調用GetDate()函數10. mariadb的主從復制、主主復制、半同步復制配置詳解
