19. Display all clients whose name begins with the letter J
or contains the letter M anywhere or contains E as the third
letter.

Answers were Sorted based on User's Feedback



19. Display all clients whose name begins with the letter J or contains the letter M anywhere or co..

Answer / saiprasannach89

select cname from client where lower(ename) like 'j%' or lower(cname) like '%m%' or select cname from emp where lower(cname) like 's%' or lower(cname) like '___e%';

Is This Answer Correct ?    0 Yes 0 No

19. Display all clients whose name begins with the letter J or contains the letter M anywhere or co..

Answer / suresh babu

select client_name from client where client_name like 'j%'
or client_name like '%M%' or client_name like '___E%';

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More Oracle General Interview Questions

The table has 3 columns 4 rows. The output is which column has least null values( A COL SHOULD BE THE OUTPUT) Write the query plz. A B C ---------- 1 NULL 7 2 4 NULL NULL 5 NULL 3 NULL NULL

1 Answers   TCS,


how will I find the first 5 highest salaried employees in each dept in oracle.

22 Answers   IBM,


Difference between open_form and call_form in oracle.

0 Answers  


What is oracle thin client?

0 Answers  


How to get a list of all background sessions in the database?

0 Answers  






What is user managed backup in Oracle?

0 Answers   MCN Solutions,


Whether any commands are used for months calculation? If so, what are they?

0 Answers  


What is connection pooling in oracle?

0 Answers  


where do i find oracle interview questions.

1 Answers  


What is a oracle database?

0 Answers  


How to define an anonymous procedure with variables?

0 Answers  


How do I uninstall oracle client from windows?

0 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)