在数据库查询结果集中的字段前面添加文本
我正在运行数据库查询,并希望在 ID 字段前面添加字母“LG”。结果将是“LG23493”(其中 ID 为 23493)。我知道我之后可能可以使用一些脚本来执行此操作,但我想在实际查询中执行此操作。
I am running a database query and would like to prepend the ID field with the letters "LG". A result would be something "LG23493" (where the ID is 23493). I know I can probably do this afterwards with some script, but I want to do this within the actual query.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Firebird 中的 连接运算符 是
||
,因此您可能需要类似'LG'||id
的内容。The concatenation operator in Firebird is
||
, so you would want something like'LG'||id
.使用串联
CONCAT()
函数:Use the concatenation
CONCAT()
function: