我有一个sellers表,其中sellerid列是 sno
我有一张产品表,里面有sellerid sellerid
,我想得到那些没有被阻止的卖家(有一列名为 flag
在sellers表中),并且已经创建了至少一个产品,所以我写了这个(或者复制这个)
SELECT e.*, count(*) AS count
FROM sellers AS e
left join products AS r ON e.sno = r.sellerid
where NOT e.flag='1'
GROUP BY e.sno
现在我通过以下方式来分析我的逻辑:
if($row["count"] == 1){
continue;
}
它产生了错误的结果
1条答案
按热度按时间x7yiwoj41#
snoflagcount102201301号
snoflagcount102201300号
snoflagcount102201号
db<>在这里摆弄