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 / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain what are clusters?

610


When do we use group by clause in a sql query?

567


What is the data type of dual table?

523


What do you mean by a database transaction & what all tcl statements are available in oracle?

549


How do we display rows from the table without duplicates?

545






How to handle a single quote in oracle sql?

593


how the Oracle Prepares the Execution Plan and how it chooses the Optimal one?

1823


How can we find out the current date and time in oracle?

641


What is a system tablespace and when it is created?

556


Why should I use oracle database?

569


Can we write insert statement in function in oracle?

532


How to select all columns of all rows from a table in oracle?

588


What is an oracle user account?

572


How to update values in a table in oracle?

579


How will you write a query to get a 5th rank student from a table student_report?

1370