-- returns records where amount is greater than or equal to 400
SELECT order_id, item, amount
FROM Orders
WHERE amount >= 400;
select greatest(1,2,3,4,5);
SELECT *
FROM employees
WHERE employee_id >= 3000;
SELECT *
FROM Customers
WHERE age > 25;
Greater than :
SELECT * FROM employees WHERE employee_id >= 3000;
-- returns records where amount is greater than 400 (exclusive)
SELECT order_id, item, amount
FROM Orders
WHERE amount > 400;
-- returns records where amount is greater than or equal to 400
SELECT order_id, item, amount
FROM Orders
WHERE amount >= 400;
select greatest(1,2,3,4,5);
SELECT *
FROM employees
WHERE employee_id >= 3000;
SELECT *
FROM Customers
WHERE age > 25;
Greater than :
SELECT * FROM employees WHERE employee_id >= 3000;
-- returns records where amount is greater than 400 (exclusive)
SELECT order_id, item, amount
FROM Orders
WHERE amount > 400;