Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在自动模式下的值 sql 字段后添加字符。示例我有 numeryc 类型字段 01,我想在数字 PC 之后添加,以便转换 01PC 中的值。
帮我?
此查询在 field1 的末尾添加字母 A
select concat(field1, 'A') from table1
如果你想更新你可以做的表..
update table1 SET field1 = concat(field1, 'A')
最后一个查询在所有字段1的末尾添加字母A
像这样使用convertsql函数 select concat(convert(nvarchar([length]), field1), 'pc') from table1
convert
select concat(convert(nvarchar([length]), field1), 'pc') from table1