MYSQL AND OR条件问题

WBOY
Release: 2016-06-23 13:38:19
Original
1091 people have browsed it


SELECT id,name		FROM test WHERE type_1 = 1 OR type_2 = 1 AND id = 1
Copy after login

这样会印出全部,无视了id=1这个条件,要怎么改才对呢?


回复讨论(解决方案)

SELECT id,name       FROM test WHERE (type_1 = 1 OR type_2 = 1) AND id = 1
Copy after login
Copy after login

SELECT id,name       FROM test WHERE type_1 = 1 OR (type_2 = 1 AND id = 1)
Copy after login

SELECT id,name       FROM test WHERE (type_1 = 1 OR type_2 = 1) AND id = 1
Copy after login
Copy after login

要看你的实际需要

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template