gpt4 book ai didi

php - 使用 AND 选择语句

转载 作者:行者123 更新时间:2023-11-29 01:43:43 25 4
gpt4 key购买 nike

我有一个答案表,其中的列字段如下:

questionID,answer,email
row1: questionID = 'q1', answer = 'Male', email = 'fake@fake.com'
row2: questionID = 'q2', answer = 'Human',email = 'fake@fake.com'

我想要一个这样的选择语句:

SELECT email 
FROM answers
WHERE (questionID='q1' AND answer='Male')
AND (questionID='q2' AND answer='Human')

所以换句话说,我想要所有男性和人类的电子邮件。问题是每个“答案”都是一个新行,所以这个查询不起作用。有没有办法轻松做到这一点?谢谢!

最佳答案

SELECT email FROM answers 
WHERE answer='Male' OR answer='Human'
group by email
having count(distinct answer) = 2

关于php - 使用 AND 选择语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12861836/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com