我有例如這樣的:選擇件的這種顏色不屬於一個車輪和質譜> = 10 和我有四個想法WHERE NOT SQL INSTRUCTION
select color from A where not(name='wheel') and mass>=10
select color from A where mass>=10 and not(name='wheel')
select color from A where not name='wheel' and mass>=10
select color from A where (not name='wheel') and mass>=10
哪一個是正確?我認爲第一個肯定沒問題,但其餘的呢?
只需嘗試四個不同的版本。不要忘記在你的表中有一些NULL值。 (他們傾向於混淆初學者。) – jarlh
從A中選擇顏色,其中名稱<>'wheel'且質量> = 10; –
我知道<>和!=,但我必須使用NOT – tabaluga2012