I need to get the all the row for the value 11 from the below table. Could give me query for this.


create table teststring(a varchar(25))

insert into teststring
values('11:02,05:BL')
insert into teststring
values('16:03,11:RS')
insert into teststring
values('13:01,04:LL')
insert into teststring
values('16:05,11:RS')

drop table teststring