0
我試圖使用PhpMtAdmin 5.6.12,MySQL客戶端版本不等於選擇:5.6.12,但似乎不工作:的MySQL不等於 - 不工作
我已經試過這個查詢:
SELECT * FROM table WHERE field <> 05.05.2013
SELECT * FROM table WHERE field <> '05.05.2013'
SELECT * FROM table WHERE field <> "05.05.2013"
SELECT * FROM table WHERE field != 05.05.2013
SELECT * FROM table WHERE field != '05.05.2013'
SELECT * FROM table WHERE field != "05.05.2013"
SELECT * FROM table WHERE field not in ('05.05.2013')
...
我收到錯誤消息:
ERROR: Unclosed quote @ 38
STR: '
SQL: SELECT * FROM `table` WHERE field <> \'05.05.2013\'
這兩種方式都無效。我得到了同樣的錯誤。 –