大家好,
我有一个包含条目的表,这些条目具有字段机密性(公共、机密)和字段类型(项目、海报、出版物……)。那么我想做什么:我想在我的 SELECT 中过滤所有条目,但不过滤具有指定类型和机密性的条目。
例如:
type=project, confidentiality=public | should be selected
type=project, confidentiality=confidential | should be not selected
type=poster, confidentiality=public | should be selected
type=poster, confidentiality=confidential | should be selected
有没有好的方法来做到这一点?
SELECT ...
WHERE (type = 'project' AND confidentiality = 'public') OR type = 'publication' OR type
= 'poster' OR type = 'lecture' OR type = 'committee'
GROUP BY
提前致谢