sql中<>為不等於,例如
where t3.first_gds_type<>'0'
注意:字段為null的數據也當做滿足不等於的條件,所以要保留null數據 ,需要加上
or t3.first_gds_type is null,即:
where t3.first_gds_type<>'0' or t3.first_gds_type is null
sql中<>為不等於,例如
where t3.first_gds_type<>'0'
注意:字段為null的數據也當做滿足不等於的條件,所以要保留null數據 ,需要加上
or t3.first_gds_type is null,即:
where t3.first_gds_type<>'0' or t3.first_gds_type is null
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。