Sql 서버 의 집합 작업 Union Intersect Except

1258 단어
두 데이터 집합의 구조 가 서로 같 으 면 집합의 가, 감 (Minus), 교, 그리고 조작 을 할 수 있다.다음은 Sql Server 를 예 로 들 어 설명 하 겠 습 니 다.
 
      
     union all(        ,    )
  select * from table1 union all select * from table2  
      
     union(       )
         select * from table1   
  union select * from table2  
     
     intersect(       )
  select * from table1 intersect select * from table2 
      
  except(      ) 
  ( select * from table1 union select * from table2 ) except ( select * from table1 intersect select * from table2 

좋은 웹페이지 즐겨찾기