程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> mysql之exists子查詢

mysql之exists子查詢

編輯:MySQL綜合教程

mysql之exists子查詢   子查詢可以分為:from where 和 exists子查詢   www.2cto.com   分類表:   [sql]  mysql> select * from category;   +----+---------+   | id | c_name  |   +----+---------+   |  1 | ios     |   |  2 | android |   |  3 | sb      |   +----+---------+   3 rows in set     商品表: www.2cto.com   [sql]  mysql> select * from goods;   +----+---------+--------+-------+-----+   | id | name    | cat_id | price | num |   +----+---------+--------+-------+-----+   |  1 | 蘋果    |      1 |  4999 |   2 |   |  2 | nexus4  |      2 |  1999 |   3 |   |  4 | 榮耀2   |      2 |  1888 |   5 |   |  6 | 三星    |      2 |  3000 |   2 |   +----+---------+--------+-------+-----+   6 rows in se     www.2cto.com   要求:只找出分類下有商品的分類   [sql]  mysql> select * from category c where exists (select * from goods where cat_id=c.id);   +----+---------+   | id | c_name  |   +----+---------+   |  1 | ios     |   |  2 | android |   +----+---------+   2 rows in set    

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved