Reputation: 439
I need to compare numbers stored in varchar fields, for example i have a table:
id | values
1 | 2
2| 154
3 | 88
4 | 35
and I need to look for numbers, that are higher than 5, if I could use int attribute for values
fields everything would be ok, but I have to use varchar. Is there any simple solution?
Upvotes: 3
Views: 1671