大家谁知道 sqlserver里 字段值为 null 在sql 语句里 怎么表示啊
比如: sql=" update SMT_yp set SMT_type=0 where SMT_type=null"
conn.execute (sql)
我测试了,就是不管用!郁闷!在线等!
参考答案:等于NULL 写为 where SMT_type is null
不为NULL 写为 where SMT_type is not null
等于空时才用=号 where SMT_type = ''
比如: sql=" update SMT_yp set SMT_type=0 where SMT_type=null"
conn.execute (sql)
我测试了,就是不管用!郁闷!在线等!
参考答案:等于NULL 写为 where SMT_type is null
不为NULL 写为 where SMT_type is not null
等于空时才用=号 where SMT_type = ''