问题信息
请登录之后查看
邀请回答
暂无人订阅该标签,敬请期待~~
墨值悬赏
=0 提示很明显了啊。类型不匹配。
评论
有用 10DELETE FROM Course where Cpno IS NULL;
评论
有用 10试试这两个呢?
update course set cpno='' where cno='2';
update course set cpno=ifnull(cpno,'');
评论
有用 8delete from t where t.col_name = '' or t.col_name is null or t.col_name = null;
评论
有用 2
墨值悬赏
