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 / manisha
select b.region from table1 as a,table2 as b
where a.employeeid=b.employeeid and a.[tshirt size]=3
| Is This Answer Correct ? | 0 Yes | 7 No |
Post New Answer View All Answers
Is port 1433 secure?
What is 2nf in normalization?
What is efficiency data?
What is the difference between cube operator and rollup operator? : SQL Server Architecture
What is query parameter in ssrs?
Can another user execute your local temporary stored procedures?
How to insert multiple rows with a subquery?
What is blocking?
What are tables in sql server?
What is stored in the mssqlsystemresource database? : sql server database administration
What is a hint?
Write a sql query to delete duplicate records from a table called table1
What is snapshot report?
What is normalization of database? What are its benefits?
How to create indexed view?