gpt4 book ai didi

sql - 将数值转换为Varchar

转载 作者:行者123 更新时间:2023-12-03 13:19:05 24 4
gpt4 key购买 nike

我想通过在数字列中附加一些alphabt来获取记录。
但是我遇到错误,我尝试使用强制转换函数。

例如

select convert(varchar(10),StandardCost +'S')
from DimProduct where ProductKey = 212

这里StandardCost是一个数字字段,但是当我获取记录时我遇到了错误
请看一看。

最佳答案

我认为应该

select convert(varchar(10),StandardCost) +'S' from DimProduct where ProductKey = 212

要么
select cast(StandardCost as varchar(10)) + 'S' from DimProduct where ProductKey = 212

关于sql - 将数值转换为Varchar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5323361/

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