mysql 中int爲null值 進行的比較 原

起始sql

select * from t_rabbit where sex = 0 and status = 0 and breed_count <= 3 AND is_grow = 1 
AND father_id <> 4

查詢結果

null是查不出的
判斷式中,不論 null =0 還是null <> 0 ,結果都是false。
所以改成這樣比較好

最終sql:

select * from t_rabbit where sex = 0 and status = 0 and breed_count <= 3 AND is_grow = 1 
AND ( father_id <> 4 or father_id is null )

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章