I\'m trying to do this:
SELECT CAST(columnName AS INT), moreColumns, etc FROM myTable WHERE ...
I\'ve looked at the help FAQs here: http://
Try cast (columnName as unsigned)
cast (columnName as unsigned)
unsigned is positive value only
If you want to include negative value, then cast (columnName as signed), The difference between sign (negative include) and unsigned (twice the size of sign, but non-negative)
cast (columnName as signed)