MySQL判断某个字段的值为NULL,不能用 != 1 , <>1来判断(查出结果为0)
而应该用is NULL 判断
例如:
update workload_pattern set mss = 0 where mss is null
MySQL判断某个字段的值为NULL,不能用 != 1 , <>1来判断(查出结果为0)
而应该用is NULL 判断
例如:
update workload_pattern set mss = 0 where mss is null