簡體   English   中英

如果兩個表的內容相同,如何比較?

[英]How to compare if two tables got the same content?

如果兩個表在 sql 中的內容相同,如何比較?

使用EXISTS

    Select case when count(*) >0 
     Then
    'Common content exists' 
     Else 
     'Nothing in common' 
     End
    from table1 t1 where
   EXISTS (select 1 from table2 t2 where 
    t2.id=t1.id )

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM