我有一个包含此信息的数据库(示例)
EMAIL COMING
info@domain.com google
test@example.net google
text@example.net yahoo
info@super.net google
testing@foo.com yahoo
testing@foo.com google
例如,我将只提取来自“google”的值,而不是来自“yahoo”的值。所以,在我的 SQL 中,我会只读
info@domain.com
和
info@super.net
因为其他的是来自 google && yahoo。
所以,在代码中,像
SELECT * FROM mytable WHERE COMING = 'google' AND COMING != 'yahoo'
但显然我的代码是错误的。
你可以帮帮我吗?谢谢 :)