Hello All,
How to convert a character column to integer in the where clause.
Example:
select * from tabname where int(colname) between 1 and 50;
In the above example the int(colname) is not working but it works if specified as select int(colname) from tabname.
Thanks in advance
Kamal K Nelli