如何对sql数据库中的某一字段进行替换?

2025-01-20 19:08:50
推荐回答(4个)
回答1:

1.SQL字段名称替换,可以用AS。
如:select ID,NAME as 姓名 from table
2.替换某字段某些行的值可以用update。
如:update table set Name='zhang san' where name='条件表达式'
3.列值替换还有replace函数。

答案:update 表名 set 列1='yr' where 列1='hr'
repalce(要置换的字段,需要替代的字符,替换后的字符)
update 表名 set 列1=replace(列1,'hr','yr');

回答2:

update 表名 set 列1='yr' where 列1='hr'

如果换成REPLACE函数的话,具体语句如下:
update 表名 set 列1=replace(列1,'hr','yr') where 列1='hr'

以上语句的测试过了。

回答3:

update 表名 set 字段名=字段值 where = 更新条件

回答4:

replace函数。怎么用自己去看帮助才可以有所长进。