Hi Masters,
I have a query .. Please advise me
create table sample(name varchar2(10));
insert into sample values('A');
Insert into sample values('B');
insert into sample values('C');
if I select a record from sample like name ='A' then A record will be display. if I select name='B',then it will display A and B records .. If i select name='C' then It has to display B & C records.
Please advise me ..
Regards
PK