SQL语言怎么修改数据库表中的某属性的值

将数据库中某属性的“1”改成“甲”显示出来
2024-12-23 14:07:13
推荐回答(1个)
回答1:

update 表名 set 字段名 = 新值 where 条件
update table set name = "甲" where name=1