Basically I would like a select statement that would function like this
SELECT * FROM table WHERE column IS NOT INT
Is there a condition li
You could also use
SELECT * FROM T WHERE C = '' OR C LIKE '%[^0-9-]%' /*Contains a char other than - or 0-9*/ OR C LIKE '_%-%' /*Contains the - char other than 1st position*/