如何连接两个SQL表,将第二个表中的值放入第一个列中?

时间:2016-01-27 09:26:35

标签: sql

我不知道从哪里开始!我有两张桌子,一张详细显示公司手机账单,如:

enter image description here

另一张显示租金线的表格,如下:

enter image description here

我想"合并"两个表格,以便“线路租赁”值显示在“呼叫成本”列中,值为“#34; Line Rental"显示在“调用类”列中,“帐单日期”显示在“日期”列中:

enter image description here

1 个答案:

答案 0 :(得分:3)

试试这个

select User,callcost,callclass,date from 1sttable
union all
select User,LineRental,'Line Rental',billdate from 2ndtable