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 do I run sql profiler?
what is table? : Sql dba
What is the difference between local and global temporary table?
What makes a good primary key?
what are the drivers in mysql? : Sql dba
what are date and time intervals? : Sql dba
Explain the difference in execution of triggers and stored procedures?
How do you declare a user-defined exception?
What is difference between sql and excel?
Is left join and outer join same?
What is the difference between alter trigger and drop trigger statements?
how is myisam table stored? : Sql dba
Can %notfound return null after a fetch?
Can we use rowid as primary key?
Explain autonomous transaction.