Question

QUESTIONS Q01: Use the comment feature of SQL to print your full name, AUID and username in three separate lines at the top o

0 0
Add a comment Improve this question Transcribed image text
Answer #1

You should have given table structure, but i am giving you sample answers please implement for all the columns.

1.

SET SERVEROUTPUT ON
BEGIN
   DBMS_OUTPUT.PUT_LINE("Name");
   DBMS_OUTPUT.PUT_LINE("Auid");
   DBMS_OUTPUT.PUT_LINE("Username");
END;

2.

select Product_Id as "Product_Id", UnitPrice as "UnitPrice" from Product;

3.

select ProductName as "ProductName", UnitPrice as "UnitPrice", UnitInStock as "UnitInStock" from Product order by UnitPrice;

4.

select phonenumber from shipper where company_name like 'United Package';

5.

select * from customer where faxnumber is not null;

6.

select * from order where orderdate>=1/7/1996 and orderdate<=31/7/1996;

Add a comment
Know the answer?
Add Answer to:
QUESTIONS Q01: Use the comment feature of SQL to print your full name, AUID and username in three separate lines at the top of the script file. From this point onwards, you should use the comment fea...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT