gpt4 book ai didi

mysql - 为 select 语句添加前缀文本

转载 作者:行者123 更新时间:2023-11-29 20:21:51 29 4
gpt4 key购买 nike

我正在尝试在具有一些匹配主键的两个不同服务器上运行 select 语句。我希望能够选择主键,但向每条记录添加前缀“A”

例如:

ID   "to this"   ID
1 A1
2 A2
3 A3

这就是我的查询内容

select 'A' + CAST (a.id AS VARCHAR(25)) as ID,a.*,':',     b.*,':',c.*,':', d.*,':', e.*,'REPORTDT', g.*
from labgen.order_ a
join patient b on a.id = b.chart
join insurance c on b.ins1 = c.code
join client d on d.num = a.client1
join salesgrp e on d.salesgroup = e.num
join reportdt g on a.accession = g.accession

最佳答案

在 select 语句中试试这个:

select CONCAT('A', a.id) as ID, a.*,':', //etc

This链接也会有帮助。

关于mysql - 为 select 语句添加前缀文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39474599/

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