Instruction
Good job! Now, besides the equality sign (=), there are also some other conditional operators which you can use. Look at the next example.
SELECT * FROM user WHERE age < 20;
Instead of the equality sign (=), we used the less than sign (<). Now our instruction selects only those users who are below 20. We can apply several operators in the same way:
<(less than),>(greater than),<=(less than or equal),>=(greater than or equal).
Easy, right? Why don't we practice a bit?
Exercise
Select all columns for all cars with price higher than $10,000.
Stuck? Here's a hint!
Type:
SELECT * FROM car WHERE price > 10000;



