In SQL, you can use cast or convert to convert a string to an integer so you can compare numerical values, i.e.
SELECT * FROM table1 WHERE CAST(col1 AS int) < 100
Is it possible to do the same thing in YQL?
The following doesn't work:
SELECT * FROM json WHERE url='url_goes_here' AND CAST(col1 AS int) < 100
It gives me 0 results. I should be getting more.
In both queries, col1 is a string.