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 are joins, explain all types of joins?

0 Answers   Bravura Solutions,


How to build data dictionary view an new database?

0 Answers  


what are actual and formal parameters?

0 Answers  


What is the sid in oracle?

0 Answers  


How you find out version of installed workflow?

1 Answers  






what is the difference between functional dependecy and multilevel dependency?

0 Answers   Oracle,


What are the differences between lov and list item?

0 Answers  


How to convert a string to a date in oracle database?

0 Answers  


How to create a temporary table in oracle?

0 Answers  


What is using clause and give example?

0 Answers  


Difference between oracle's plus (+) notation and ansi join notation?

0 Answers  


Is oracle a programming language?

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)