在查询中组合两个表
问题描述:
我正在使用SQL Server 2008 R2。我怎样才能得到所提供的输出?在查询中组合两个表
tbl_Configure
Date Name
1/1/13 Sandeep
1/2/13 Sudeep
tbl_Install
Date Name
1/1/13 Sandeep
1/2/13 Sandeep
输出:
Date Name Type
1/1/13 Sandeep Configure
1/1/13 Sandeep Install
1/2/13 Sudeep Configure
1/2/13 Sandeep Install
答
Select config.Date, config.Name, 'Configure' as Type From tbl_Configure config
Union
Select install.Date, install.Name, 'Install' as Type From tbl_Install install
从你那里塔基ng“Type”列 –
@Suganthan如果我猜对了,它看起来像是来自表的名字 – Pepe
@Suganthan'type'列就像下面Pepe回答的行的指示符。 –