I have a table like so:
Type Col1
0 ff
1 9f
3 92
and I want to access just a part of the col1 values
i.e. I want to query the table with a value such as Col1=92
where all the rows return
and if I queried with Col1=94
then row 0 and 1 would return and if I queried with Col1=12
only row 0 would return. Obviously some operation would need to happen on the above assignment statements for this to work.
so something like this:
SELECT * FROM TABLE1 WHERE Col1(1)=9;
except I understand that sintax does not work...
hope this makes sense