程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> 關於MYSQL數據庫 >> Mysql中左連接的使用

Mysql中左連接的使用

編輯:關於MYSQL數據庫
查詢在一個相關的表中不存在的數據,如用戶表(user)和用戶資料表(user_profile),通過id關聯,要查出user表中在user_profile中不存在的記錄:
select count(*) from?user left join?user_profile On user.id=user_profile.id where user_profile.id is null
復雜條件:
select count(*) from?user left join?user_profile On user.id=user_profile.id where user.level>1 or user_profile.money>10000
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved