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
Which are the different character-manipulation functions in sql?
What is delimiter in pl sql?
How do I order by ascending in sql?
What is null in pl/sql?
Explain the difference between 'between' & 'and' operators in sql
What are triggers and its uses?
what is a stored procedure? : Sql dba
Is postgresql a server?
What is clustered index in sql?
What is cross join sql?
how to analyze tables with 'mysqlcheck'? : Sql dba
define data blocks ? : Sql dba
What is schema in sql?
Is pl sql a programming language?
What can sql server reporting services do?