please can anyone answer this query
Table 1 has 2 columns: EmployeeId,Age
Table 2 has 2 columns: EmployeeId, Region
Write SQL to Find the region who has the oldest person
Answer Posted / ramesh babu
Create table #tempempid(Employeeid int,age int)
Create table #tempempregion(Employeeid int,Region varchar
(200))
Insert into #tempempid(Employeeid,age)values(100,25),
(101,35),(103,35),(104,10),(105,12),(106,11),(107,13),
(108,24),(109,22),(110,17),(111,11),(112,25),(113,100) ,
(52,100)
go
Insert into #tempempregion(Employeeid,region)values
(100,'SA'),(102,'SA'),(103,'UK'),(104,'UK'),(105,'PHL'),
(106,'US'),(107,'US'),(108,'US'),(109,'RSA'),(110,'RSA'),
(111,'UK'),(113,'SA'),(52,'CA')
Select T.region,T.Age from
(
Select b.region as Region,a.age as Age,
rank() over(order by age desc) as Rnk
from #tempempid a inner join #tempempregion b on
a.Employeeid=b.Employeeid
)T
Where T.Rnk=1
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are unicode character string data types in ms sql server?
Explain the Ways to improve the performance of a sql azure database?
Explain how many normalization forms?
How to define output parameters in stored procedures?
What is the difference between varchar and nvarchar datatypes?
What is difference between order by and group by?
Write a SQL command to insert and update only a particular field?
What are group functions in query statements in ms sql server?
What is delete query?
What is the difference between dbcc indexdefrag and dbcc reindex?
Is truncate a dml command?
What is clustered index
What is the difference between DataRow.Delete() and DataRow.Remove()?
How you can minimize the deadlock situation?
Which autogrowth database setting is good?