2. Display the item number and total cost for each order
line (total cost = no of items X item cost). Name the
calculated column TOTAL COST.

Answers were Sorted based on User's Feedback



2. Display the item number and total cost for each order line (total cost = no of items X item cost..

Answer / girija.112

ANS:
SELECT ITEM_NO , NO_OF_ITEMS*INDIVIDUAL_ITEM_COST AS "TOTAL COST"
FROM ITEM_TABLE

ITEM_NO TOTAL COST
1001 30000
1002 40000
1003 72000
1004 100000
1006 40000
1007 60000
1008 80000
1009 -
1010 56000

I have assumed that ITEM_NO, NO_OF_ITEMS &
INDIVIDUAL_ITEM_COST columns are in a single table ITEM_TABLE

Is This Answer Correct ?    1 Yes 0 No

2. Display the item number and total cost for each order line (total cost = no of items X item cost..

Answer / ajit

select itemnum,totalcost
from <tab name>
group by cube(itemnum, totalcost);

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Oracle General Interview Questions

How to call a sub procedure?

1 Answers  


A table t is there.If you perform insert ,update and delete then the trigger will fire.What is the minimum no of trigger required for a table.

4 Answers  


Where is the export dump file located?

1 Answers  


How to rename a tablespace in oracle?

1 Answers  


22. Display the order number, number of lines in the order, total number of items and total value for all orders that have a total value greater than $100

1 Answers   Wipro,


How to rollback the current transaction in oracle?

1 Answers  


How many types of segments in Oracle?

1 Answers   MCN Solutions,


Hi Every One , What is the table Space in Oracle Database ? waiting for answere and thankyou

8 Answers  


How to concatenate two text values in oracle?

1 Answers  


What is a Database instance ? Explain?

3 Answers  


Which of the following is not a database object TABLESPACE TABLE INDEX NONE

1 Answers  


What are the different types of modules in oracle forms?

1 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1803)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)