gpt4 book ai didi

mysql - 从两个表中选择时添加一个额外的列

转载 作者:太空宇宙 更新时间:2023-11-03 10:57:21 25 4
gpt4 key购买 nike

我有两张 table ,web 和 mail。目前我正在使用此查询从两个表中获取数据。

PreparedStatement ps = con.prepareStatement("(select * from web where name='abc') union (select * from mail where name='abc')");
ResultSet rs = ps.executeQuery();
while(rs.next()){
bw.write(rs3.getString("name")+"~"+rs3.getString("age")+"~"+rs3.getString("profession");
bw.newLine();
}

输出是这样的。

+------+------+------------+
| name | age | profession |
+------+------+------------+
| abc | 20 | doctor |
| abc | 20 | engineer |
+------+------+------------+

在文件中是这样的

abc~20~doctor
abc~20~engineer

但是我怎样才能在结果集中添加一个额外的列来给我这种格式的数据

abc~20~doctor~web
abc~20~engineer~mail

最佳答案

try this 

select * , 'web' as tablename from web where name='abc' union
select * ,'mail' as table namefrom mail where name='abc'

关于mysql - 从两个表中选择时添加一个额外的列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19221451/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com