IntroductionEXISTS is used to check whether a subquery returns at least one row of data. The subquery does not actually return any data, but returns a value of True or False. EXISTS specifies a subquery that tests for the existence of rows. Syntax: EXISTS subquery. The subquery parameter is a restricted SELECT statement (COMPUTE clause and INTO keyword are not allowed). The result type is Boolean and returns TRUE if the subquery contains rows. ExampleAn activity configuration main table activity_main uses act_code to uniquely identify an activity. The activity venue adaptation table activity_area is associated with the main table through act_code. The activity prize table activity_sku is associated with the main table through act_code. Activity main tableCREATE TABLE `activity_main` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `act_code` varchar(255) NOT NULL COMMENT 'Activity code', `act_name` varchar(255) NOT NULL COMMENT 'Activity name', PRIMARY KEY (`id`), UNIQUE KEY `uniq_code` (`act_code`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Activity main table' Adaptation table of websites where the event is heldCREATE TABLE `activity_area` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `act_code` varchar(255) NOT NULL COMMENT 'Activity code', `area` varchar(255) NOT NULL COMMENT 'Websites participating in this activity', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='List of websites compatible with the event' Event Prize ListCREATE TABLE `activity_sku` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `act_code` varchar(255) NOT NULL COMMENT 'Activity code', `sku` varchar(255) NOT NULL COMMENT 'Products given away during the event', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Activity gift table' Comparing Queries Using EXISTS and IN This example compares two semantically similar queries. The first query uses IN and the second query uses EXISTS. Note that both queries return the same information. # Query the weight scale select * from activity_main where act_code in ( select act_code from activity_sku where sku = 'Lingye Jun's body fat scale' ) # Query the weight scale select * from activity_main a where exists ( select 1 from activity_sku b where a.act_code = b.act_code and b.sku = 'Lingye Jun's body fat scale' ) # Fuzzy query B-BEKO British baby stroller select * from activity_main where act_code in ( select act_code from activity_sku where sku like '%B-BEKO%' ) # Fuzzy query B-BEKO British baby stroller 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%' ) # Query the activities held in Blog Garden select * from activity_main where act_code in ( select act_code from activity_area where area = '博客园' ) # Query the activities held in Blog Garden select * from activity_main a where exists ( select 1 from activity_area b where a.act_code = b.act_code and b.area = '博客园' ) # Activity information for holding an event in Blog Garden and the prize is a Huawei phone 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 = 'Huawei P30Pro' )) # The inner layer exists statement is only effective in the current where statement. Whether it is finally returned depends on the outermost layer exists. If it is true, it is returned to the result set, and if it is false, it is discarded. 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 = 'Huawei P30Pro') ) The above is the detailed content of the summary of Mysql exists usage. For more information about the usage of Mysql exists, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: JavaScript Factory Pattern Explained
>>: Nginx server adds Systemd custom service process analysis
This article uses an example to describe how to q...
Table of contents 1. Recipe Collection 1.1 Projec...
Table of contents Install Docker-ce for the devel...
This article describes how to install MySQL 5.7 f...
Table of contents Ideas Request interception Resp...
1. Connect to MySQL Format: mysql -h host address...
Vue uses Ref to get component instances across le...
1. What is Continuous Delivery The software produ...
First we need to know the self-calling of the fun...
Table of contents Preface 1. Recursive components...
One port changes In version 3.2.0, the namenode p...
Directory Structure . │ .env │ docker-compose.yml...
Vertical table Vertical table splitting means spl...
There is no doubt that containers have become an ...
Preface: When we need to store decimals and have ...