9. Display the client name and order date for all orders
using the JOIN . . . USING method.
Answers were Sorted based on User's Feedback
Answer / devraj
Select ca.name, ora.ordid, Ora.Orderdate From customer ca,
ord Ora Where Ora.Custid = ca.custid;
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / anjum
select c.name,o.ordid,o.orddate from customer c join oreder o
using(custid);
| Is This Answer Correct ? | 0 Yes | 0 No |
How do we represent comments in oracle?
What is the difference between truncate & delete command?
How to Remove the 3rd highest salary person record from table?
What is open database communication (odbc) in oracle?
How to convert numbers to characters in oracle?
What is primefaces used for?
what is shell?
types of indexes and the rationale behind choosing a particular index for a situation.
emp numb is unique because that is primary key,,but what is foreign key .. explain very clear with example
What is oracle sid?
how to handle exceptions in post production
What is transaction control statement and how many types of transaction control statement in Oracle?