can any one answer this query,thank you in advance
Table 1 has 2 columns: EmployeeId, T shirtsize(values can
be 1,2,3)
Table 2 has 2 columns: EmployeeId, Region
Write SQL to Find the region which has the largest number
of people with Tshirt size=3
Answer Posted / karthick veerappan
select top 1 region,count(*) from table2 where empid in
(select empid from table1 where tsize=3) group by region
order by count(*) desc
| Is This Answer Correct ? | 8 Yes | 5 No |
Post New Answer View All Answers
How will you know when statistics on a table are obsolete?
How to get the definition of a trigger back?
What is temporal table?
Retrieve the unique rows from table without using UNIQUE and DISTINCT keywords.
Tell me the phases a transaction has to undergo?
Explain isolation levels that sql server supports?
What are the differences between stored procedure and the dynamic sql?
Explain different types of locks in sql server.
What is row-level compre?
What is system stored procedures?
SQL Server Architecture ?
Does sql server 2016 have ssms?
What is an indice?
what authentication modes does sql server support? : Sql server database administration
What is attribute hierarchy? : sql server analysis services, ssas