In a perfect world for this type of setup, we would have an integer column that expects only numbers;
But what if you have a varchar
column and you want to add a WHERE
clause that said something like this:
WHERE <value> is NOT a number
In essence, you are selecting all rows that contain any characters that are NOT ONLY numbers.
This is for MySQL.