Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Mean SQL statement!
I need help :)
I have to write a SELECT statement which addresses the following problem (because I eventually have to turn this into a view which can be accessed through the application's presentation layer):
Each item does not necessarily have a PRICE record associated with it. In the case where it doesn't have a PRICE record, it has to get the $$$ from another table called ITEM_W. How do I get this into the following SELECT statement? Not only that! I then have to use this $$$ value and calculate a unit $$$ using a multiplier from another table, and then do some other calculation using the unit $$$ and another multiplier and another number to get an extended $$$ value.
Here's the statement as it is:
SELECT
D.CUST_NUM, F.CUST_GROUP, D.SHIP_NUM, A.ITEM_NUM,
F.CUST_GROUP = Z.CUST_GROUP AND E.CUST_NUM = F.CUST_NUM) AS PRICE
A.ITEM_NUM = B.ITEM_NUM AND B.UOM_ID = C.UOM_ID AND A.ITEM_NUM = D.ITEM_NUM AND D.SELL_UOM = C.UOM AND D.SHIP_NUM = E.SHIP_NUM AND D.CUST_NUM = E.CUST_NUM AND E.CUST_NUM = F.CUST_NUM AND E.CUST_NUM = '33' AND E.SHIP_NUM = '14'
And here is some of the output:
CUST_NUM CUST_GROUP SHIP_NUM ITEM_NUM REQUESTED_ITEM REPORT_ITEM_NUM SELL_UOM UOM SELL_UOM_MULT PRICE 33 SWHS 14 114012 66600 114012 EA EA 1 51.49 33 SWHS 14 114013 66610 114013 EA EA 1 45.55 33 SWHS 14 114017 66620 114017 EA EA 1 120.93 33 SWHS 14 12720 12720 12720 EA EA 1 33 SWHS 14 63510 63510 63510 EA EA 1 33 SWHS 14 115910 66980 115910 EA EA 0.02 57.94 33 SWHS 14 21901 66990 21901 PK50 PK50 162.09
Thanks in advance!!!
Saira
-- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html -----------------------------------------------------------------Received on Tue Mar 02 2004 - 10:09:05 CST
![]() |
![]() |