摘要:
数据表TA ( id ) {1,2,4,5}数据表TB ( id ) {2,3,5,6,7}=========================================1.并集 union all -->得到 左表有的 加上 右表有的:select id from taunion allselect id from tb;-----------------------------------------------------ID124523567=========================================2.并集 union -->得到 左表有的 加上 阅读全文