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
How to update values in a table in oracle?
What is PL/SQL ?
What are the benefits of ordbms?
Give the various rollback segment states.
What are the differences between interval year to month and interval day to second?
What is oracle in java?
How to add a new column to an existing table with a default value?
How translate command is different from replace?
What is a user account in oracle?
What is Library Cache in Oracle?
Provide an example of a shell script which logs into SQLPLUS as SYS, determines the current date, changes the date format to include minutes & seconds, issues a drop table command, displays the date again, and finally exits.
while i take backup using ibm tsm the following errors occurred: rman-03009 ora-19513 ora-27206 ora-19502 ora-27030 ora-ora19511
please explain.. DB architecture ...
How to create a new table in oracle?
Can we protect our pl/sql source code?