1.首先在数据库编辑1-40数字;
2.查询Num<=30的数据,查询Num>=20 and Num<=40的数据,使用union all合并;
发现30-20的数字重复了,可见union all 不去重;
3.查询Num<=30的数据,查询Num>=20 and Num<=40的数据,使用union 合并;
可见union去重;
1.首先在数据库编辑1-40数字;
2.查询Num<=30的数据,查询Num>=20 and Num<=40的数据,使用union all合并;
发现30-20的数字重复了,可见union all 不去重;
3.查询Num<=30的数据,查询Num>=20 and Num<=40的数据,使用union 合并;
可见union去重;