Source is Sales Table:
Sno Prod Sales Sales_Amount
1 A 10 2000
2 A 20 1000
3 C 10 3000
4 D 30 4000
5 A 20 1000
Target :
Sales_Count T_Sales_Amt Sales_Count(A) T_Sales_Amt(A)
90 11000 50 4000
In single query, pls tell me.
Answer Posted / welcomeashwin
SELECT
T1.SALES_COUNT, T1.T_SALES_AMT,
T2.SALES_COUNT_A, T2.T_SALES_AMT_A
FROM
(SELECT SUM(SALES) SALES_COUNT,
SUM(SALES_AMOUNT) T_SALES_AMT
FROM SALES)T1,
(SELECT SUM(SALES) SALES_COUNT_A,
SUM(SALES_AMOUNT) T_SALES_AMT_A
FROM SALES
WHERE PROD='A' GROUP BY PROD)T2
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the size of partition table?
What are all the ddl commands?
What's the procedure?
What are the two different parts of the pl/sql packages?
What is an exception in PL/SQL? What are the two types of exceptions?
What is output spooling in sql*plus?
explain about mysql and its features. : Sql dba
What is pl/sql language case sensitive?
What are the types of sql commands?
What is Difference Between Unique and Primary Key Constraints?
how to start mysql server? : Sql dba
How delete a row in sql?
What is the starting oracle error number?
What is group function in sql?
What are all ddl commands?