一個多表查詢的SQL語句

來源:互聯網
上載者:User

有 表1:如下內容 表2:   如下內容   
  id     info id value   
  1 a 1 10   
  2 b 2 30   
  3 c   
  4 d   

  想得到   
  id value   
  1 10 //表2中存在   
  2 20 //表2中存在   
  3 0 //表2中不存在   
  4 0 //表2中不存在   
  是否可以使用一條sql語句來解決,而不必先從表1中得到id,再在表2中尋找是否有該條記錄,如果有就直接讀取出來,沒有則賦值為0 

複製代碼 代碼如下:
select   表1.id,isnull(value,0)   from   表1    
  left   join   表2      
  on   表1.id=表2.id   
 



 複製代碼 代碼如下:
 select   a.id,isnull(b.value,0)   from   表1   a    
  left   join   表2   b    
  on   a.id=b.id 

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.