今天碰見一段sql 不得其解,求解惑!
一段mysql查詢語句:
select * from table where fielda='123' and not '456'
and not
是什麼意思?
我自己試了下 select * from table where not '123'
也是可以執行的
該怎麼理解?
代言2017-06-10 09:51:43
好奇怪的寫法。
fielda='123' and not '456'
分解:
fielda='123'
and
not '456'
等價於:
fielda='123' and 0
等價於:
select * from table where 0
(不知道我的優先順序對不對)