比如: 表1 表2 表1 表2 我就是想同时把两个表的内容都查出来,然后整合显示 00001—-01200——10—–5—–2015-04-01 |
|
10分 |
把两个select用union all连接起来,不过两个select列数量要一样,数据类型要对应
|
20分 |
select order_id,
item_code , qty , user_id , date from 表1 union all select id , trans_no , item_code , qty , supplier_id , date from 表2 |
请问能不能加一个字段用来区别每条记录是从哪个表查出来的??
|
|
10分 |
自己前面补一个列 SELECT “”A”” AS TBNAME
UNION ALL SELECT “”B”” AS TBNAME …. |