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 / monal
SELECT REGION,AGE, T1.EMPID FROM T2 INNER JOIN T1
ON T1.EMPID = T2.EMPID WHERE AGE = (SELECT MAX(AGE) FROM T1)
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is change data capture (cdc) in sql server 2008?
If the job running very slow what is the action you do
What is it’s similarity with sql server?
Is BCNF better than 2NF & 3NF? Why?
How do you drop an index?
How do you troubleshoot errors in a SQL Server Agent Job?
What is the sql server 2000 version number?
Explain indexes disadvantages?
What is the definition for sql server 2000?
What is the use of RDBMS?
List out what other servers you can use with ssrs?
What is difference between count (*) and count column?
What do you do in data exploration
What is your recommendation for a query running very slow? : sql server database administration
What is difference between foreign key and unique key?