What is the difference between UNION and UNION ALL?

后端 未结 26 2878
伪装坚强ぢ
伪装坚强ぢ 2020-11-21 11:28

What is the difference between UNION and UNION ALL?

26条回答
  •  别那么骄傲
    2020-11-21 12:17

    union is used to select distinct values from two tables where as union all is used to select all values including duplicates from the tables

提交回复
热议问题