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
How does postgresql compare to mysql?
How do I add a database to sql?
How do I view a table in sql?
Why do we need unique key in a table?
what is a database? : Sql dba
Can a composite key be null?
How is data stored on a disk?
What is exception? What are the types of exceptions?
What is the difference between rename and alias?
What is the difference between an inner join and an outer join?
Is primary key always clustered index?
What does 0 mean in sql?
what is an index? : Sql dba
Can we use distinct and group by together?
How do I edit a stored procedure?