Q) How to Find Max Date from each Group? (Asked in Infosys
(INFI)Interview)
Answer Posted / niladri chatterjee
SQL> Select * From Market;
MARKET_ID MKT_NAME AREA SALE_DT
---------------------- -------- ---- ----------
1 uss NE 25-JAN-12
1 uss NE 24-FEB-12
1 uss NE 20-JUN-11
1 uss NE 15-MAR-11
2 rus SE 21-MAR-11
2 rus NE 24-APR-11
3 ger SE 20-FEB-11
3 ger NE 22-MAR-11
3 ger NE 24-FEB-12
My Answers:-
For the Single Max Row:
Select * From (Select * From market Order By Sale_Dt Desc)
Where rownum = 1;
Followings are for each Groups:
Select *
from market a
where a.sale_dt =
(select max(b.sale_dt) from market b
where a.market_id = b.market_id);
OR
select market_id, mkt_name, max(sale_dt)
from market
group by market_id, mkt_name;
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
what is a Nested Loop join?
How to drop an index?
What are the parameters that we can pass through a stored procedure?
How to pass parameters to procedures in oracle?
How to run queries on external tables?
Oracle
What are the different types of record groups in oracle? Explain each of them
Hi Can any one tell me what are the API's used in requisition import.
How to manage transaction isolation level?
What are a collation and state the different types of collation sensitivity?
How to assign data of the deleted row to variables?
In which language oracle has been developed?
What is a connect identifier?
Explain index?
Will you be able to store pictures in the database?explain.