I have a column with text data in it, some of the data is alphabetical characters and some are numbers.
Is it possible to select all rows where this particular column consists of just numbers?
Something like:
Code:
SELECT * FROM table WHERE IS_NUMBER(column)
Thanks...