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

Answer Posted / 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       View All Answers


Please Help Members By Posting Answers For Below Questions

How to load a large xml file?

596


Explain the use of show option in imp command.

650


What is the difference between substr and instr?

529


What spfile/init.ora file parameter exists to force the CBO to make the execution path of a given statement use an index, even if the index scan may appear to be calculated as more costly?

1537


how to clone 9i Database on to 10g Database.

1835






Explain the types of exception?

662


What is sequence?

633


What is the order of defining local variables and sub procedures/functions?

612


Explain integrity constraint?

654


src name sex a,male b,female c,male d,female Required output : male female a,b c,d tried pivot but was not successfull select * from src pivot (max(name) for sex in ('MALE','FEMALE'));

1188


What is the difference between view and materialized view in Oracle?

620


In not less than 100 words what's the main difference between Rolap and Molap in ORACLE ?

1792


What privilege is needed for a user to create indexes in oracle?

584


Explain about integrity constraint?

617


How different is ms access and oracle?

562