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

When can Hash Cluster used ?

1 Answers  


Which dictionary view(s) would you first look at to understand or get a high-level idea of a given Advanced Replication environment?

0 Answers  


Explain the use of rows option in exp command.

0 Answers  


How to define a specific record type?

0 Answers  


What WHERE CURRENT OF clause does in a cursor?

2 Answers  






can a table has a column that has only view data and in other columns we can change data?

2 Answers   Secon,


What is a trigger and what are its types in oracle?

0 Answers  


How will you identify oracle database software release?

0 Answers  


How to check the server version in oracle?

0 Answers  


What do you mean by redo log file mirroring?

0 Answers  


Explain the importance of .pll extension in oracle?

0 Answers  


Can you create a synonym without having a table?

0 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • 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)