例如上图 我想查询reciverId为15 和0的两条数据
select * from email where reciverId=15 and reciverId =0 这样为什么只能查出reciverId=15 的那条数据 希望高手指教。。
例如上图 我想查询reciverId为15 和0的两条数据
select * from email where reciverId=15 and reciverId =0 这样为什么只能查出reciverId=15 的那条数据 希望高手指教。。
select * from email where reciverId=15 or reciverId =0
and 是两个条件都要满足 or只要有一个满足就行了