What would be a good way to select all rows from a table where the column is an unsigned integer, for example, there is pseudo-sql here
SELECT * FROM mytable WHERE mycolumn IS UNSIGNED INTEGER
So, strings abc and numbers like '12 .3 'and '12 .0' will not match , but integers like '123'.
Where mycolumn is text of type / varchar
source
share