Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SELECT * FROM ItemTable WHERE item_link not in 'http://foo.com', 'http://bar.com'
它抛出错误..
in requires parenthesis:
in
in (...)
You missed the () after IN
()
IN
SELECT * FROM ItemTable WHERE item_link not in ('value1', 'value2')