SQL值必须大于其他值才能达到一个值

时间:2016-06-08 11:40:37

标签: php mysql sql

我有这个

set MyList to {"A", "B", "C"}

set Chosen to 
    (choose from list MyList with title "Connect to" 
    with prompt "What do you want to connect to?" 
    OK button name "Connect" cancel button name "Abort" ---and help
    with multiple selections allowed) as text

它有效并且所有带有preisbevor的产品都比preis更大。但我只能获得preisbevor超过1的preis的项目

现在,它给了我们" productname preisbevor:2.00 $并且有preis:1.99 $" 但我只会得到preisbevor比preis更大的产品,并且必须达到1 $

赞:" productname有preisbevor:2.99 $并且有preis:1.99 $",如果它有2.98 $我不会有这个项目...

1 个答案:

答案 0 :(得分:0)

使用以下查询

SELECT * 
FROM tl_products 
WHERE preisbevor >= preis+1 
ORDER BY updatetime DESC 
LIMIT 25