May 13, 2016 Interview question on unmatched records Do first left join Now all we need to do is put a where condition for null that's it. ... test 0
April 29, 2016 Interview Question --Get the second highest salary of HR department select * from #employee1 select * from #department1 ;with cte(empname,sal,row) as ( select empname,empsal,ROW_NUMBER()... test 0
December 10, 2014 Distinct, AVG , COUNT how all behaves if null value exist in table These are all basics but when asked in interview we make mistake. select * from #temp select AVG(id) from #temp [5/3 or 5/5] select... test 0
November 07, 2014 Order By Surname in a Table select * from EmployeeDetail Id EmployeeName 1 Anurag Nayak 2 Ritika mohanty 3 Siba Dalai 4 Biswa Panda Trick 1 ;with... test 0
July 29, 2014 One tricky question asked in interview on Having and group by Clause select * from EmployeeSalary order by id --o/p [Need employee id and the count that crossed more than 5000] --employeeid and count(>... test 0
July 29, 2014 A nice way to truncate all the tables I wanted to truncate all tables in a cursor. But I was unable to do it as some table were being reference by foreign key constraint. This is the... test 0