SQL之and or优先级

优先级排序:not 优先级高于 and 优先级高于 or



https://blog.csdn.net/lixibang/article/details/86159022



select * from test where test_id=107 or test_id=38 and role_id=60;



select * from test where test_id=107 or test_id=38 and role_id=20;



上面的sql返回结果不一样
如果 有一条 test_id=38 role_id=20的记录



第一条语句返回一条记录
第二条语句返回两条记录


Category storage