select id,mobile,realname as name,weixin as message_note,address_des as address,create_time,cateid from v1_user UNION ALL select id,mobile,name,message_note,address,create_time,cateid from v1_clue
首先要将字段整成一样,然后使用 UNION ALL 联合。
注意:UNION在进行表链接后会去重,UNION All不会。Union将会按照字段的顺序进行排序;UNION ALL只是简单的将两个结果合并后就返回。所以我选择UNION ALL.