本文主要是介绍SQL关键字 except和except all的含义和区别【应用于sqlserver,mysql不支持】,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
except、except all 都是取集合的差集; 它们的区别在于except取差集后会删除重复项,而except all 不删除重复项。 下面是举例说明:
表t_01
表t_02
except执行结果:
mybase=# select name from t_01 except select name from t_02;
a b d
(3 行)
except all执行结果:
mybase=# select name from t_01 except all select name from t_02 ;
a a b d
(4行)
这篇关于SQL关键字 except和except all的含义和区别【应用于sqlserver,mysql不支持】的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!