Mysql – Understanding a weird SQL clause
While learning some SQL, I stumbled upon this seemingly incorrect clause: SELECT item FROM inventory WHERE 20 => price < 500; The query does not result what was intended and should look like this: SELECT item FROM inventory WHERE price…