Skip to Main Content

Insurance

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

selecting records from a table

Prabhakar KFeb 23 2021

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

Comments
Post Details
Added on Feb 23 2021
0 comments
253 views