關于Oracle中的不等于號: 在Oracle中, > != ~= ^= 都是不等于號的意思。都可以使用。 但是奇怪是的, 我想拿出price不是180000的商品時:(price是Number類型的) SELECT id, name FROM product where price> 180000; 執(zhí)行這個語句時,priceis null 的記錄不出來。也就是拿不到price是null的商品。必須使用: SELECT id, name FROM product where price> 180000 or price is null;才行。 字符串的字段存在同樣的問題。 記住:null只能通過is null或者is not null來判斷,其它操作符與null操作都是false。 ============================================================== 測試:select * from test where name>'xn'。只能查出name非空的記錄。去掉name>'xn'就可以了。這種寫法有問題。 然后用了instr(name,'xn')=0 來判斷,如果name非空的話,判斷還是有效的。如果name為空,這個判斷又出問題了。不得已只得采取instr(concat(name,'xx'),'xn') = 0來判斷,因為就算name為空,當和'xx'連接后,也會不為空的。 所以最后的sql語句為: select * from test where instr(concat(name,'xx'),'xn') = 0 來查詢name字段不等于'xn'的記錄。 或者可以用 select * from test where nvl(name,'xx')>'xn' 來查詢name字段不等于'xn'的記錄。