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

What is a materialised view?

5 Answers  


Shall I get Pro*C Compiler in Oracle-10g release ?

1 Answers  


What is a sub query and what are the different types of subqueries?

1 Answers  


20. Using a set operator, display the client number of all clients who have never placed an order.

1 Answers   Wipro,


what are archived logs?

1 Answers  


What is flashback in Oracle?

1 Answers   MCN Solutions,


Explain cascading triggers.

1 Answers  


Why we choose emp number as primarykey?

4 Answers  


what is null value?

9 Answers  


difference between procedures and function?

7 Answers   IBM,


Why do you create or replace procedures rather that drop and recreate.

1 Answers  


How we can able to import our own template (users designed MS-Word templates) which has many tabular columns; need to pass some values generate by Oracle-reports9i? Actually need to import more than 400 MS-Word templates into Oracle Reports-9i to minimize layout design in Reports.

1 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1803)
  • 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)