SQL supérieur ou égal à l'opérateur

-- returns records where amount is greater than or equal to 400
SELECT order_id, item, amount
FROM Orders
WHERE amount >= 400;
SAMER SAEID