is it possible to right a query which counts the length size of column input or the datatype of column input
eg select * from items
where itemID length = 1
or
where itemID = 0 - 9
Printable View
is it possible to right a query which counts the length size of column input or the datatype of column input
eg select * from items
where itemID length = 1
or
where itemID = 0 - 9
how about:
select * from items
where itemID between 0 and 9