我使用union
以下方法将 2 个表连接在一起
SELECT DateTime AS Date, Pupil, DateTime AS Time
FROM tableA
Where Status = 'Pending'
Union
SELECT DateTime AS Date, Pupil, DateTime AS Time
FROM tableB
Where Status = 'Pending'
Order by DateTime
我想知道是否可以添加另一列来显示从哪个表中提取信息
IE
日期 | 瞳孔 | 时间 | 桌子 |
---|---|---|---|
xx | xxxxx | xxxx | 表A |
xx | xxxxx | xxxx | 表B |
是的,你可以在你的选择中包含一个硬编码的字符串。
请注意,我已将其更改为使用 a ,因为现在保证行不同时
union all
无需应用 a 。distinct