小木桌
number name price month year
152 cheese 25 10 12
153 yogurt 12 10 12
152 cheese 22 11 12
153 yogurt 15 11 12
154 apples 30 11 12
我目前有以下查询,它正在比较两个月之间的行。
select a.price as p1, b.price as p2, a.distributor, a.number, a.name, (a.price - b.price) as pdiff from ogi a, ogi b where a.number = b.number and a.month = '" . $from_date . "' and b.month = '" . $to_date . "' and a.distributor = '" . $distributor . "'
我现在正在尝试检查上个月是否不存在一行,以回应“不存在”或类似的内容。
那么,如何检查上个月是否不存在编号 154 的行(在上表中找到)并回显“不存在”?
谢谢您的帮助!