Hi all,
I have sql data as following:
ID Michigan_Produce Item
0001-1 F Tea
0001-2 T Apples
0000-3 T Coffee
The query that I have right now is:
select ID, Michigan_Produce, Item
from Michigan_Produce_Table
where ID Like @IDNumber + '[-]%'
I have to modify this query to return True where it says 'T'
and False where it says 'F'...
How can I do this. Any help is appreciated..
I have sql data as following:
ID Michigan_Produce Item
0001-1 F Tea
0001-2 T Apples
0000-3 T Coffee
The query that I have right now is:
select ID, Michigan_Produce, Item
from Michigan_Produce_Table
where ID Like @IDNumber + '[-]%'
I have to modify this query to return True where it says 'T'
and False where it says 'F'...
How can I do this. Any help is appreciated..