'NOT LIKE' in an SQL query

后端 未结 4 426
青春惊慌失措
青春惊慌失措 2021-02-02 08:42

Why does this simple query return \'ORA-00936: missing expression\' (the database is Oracle as you can tell):

SELECT * FROM transactions WHERE id NOT LIKE \'1%\'         


        
4条回答
  •  粉色の甜心
    2021-02-02 09:27

    You need to specify the column in both expressions.

    SELECT * FROM transactions WHERE id NOT LIKE '1%' AND id NOT LIKE '2%'
    

提交回复
热议问题