发布网友 发布时间:2022-04-08 04:12
共7个回答
热心网友 时间:2022-04-08 05:41
你这个state字段 设置为了int型或者bit型了吧,这样的话一旦赋值了很不方便赋回null热心网友 时间:2022-04-08 06:59
如果state的数据类型是 int 等数子类型或者bit类型:热心网友 时间:2022-04-08 08:34
UPDATE table_name SET state=’null’ WHERE conditoins热心网友 时间:2022-04-08 10:25
UPDATE 表名 SET state= '新值' WHERE state = ""热心网友 时间:2022-04-08 12:33
update 表名 set state='你要更新的值' where state is null热心网友 时间:2022-04-08 14:58
update table set [state]='abc' where state='' or state=null热心网友 时间:2022-04-08 17:39
update $tableName set state=22 where state is null