Hcl Technologies 3+ Experienced Sql server Questions
Answers were Sorted based on User's Feedback
Answer / swapna
Hcl Placement Papers | Hcl Interview Procedure |
Hcl Aptitude Questions | Hcl Technical Questions
|Hcl Interview Questions
2 Tables will be there
Namely Employee having columns like Empid,Empname,Salary,Mgrid.
Phone Table having Empid and Phone number.
Based on these some questions like this
1) select all the Employees who does not have phone?
2)Dispaly all managers from table(Manager id is same as Empid)
3)How to know How many tables contain Empno as a column in database?
4)Find duplicate rows in a table or if we have table with one column which
has many records which are not distinct. How to find out the distinct
values from that column and number of times it's repeated?
5) How to delete the rows which are duplicate?(Don't remove both duplicate
records.)
6)How to find the 6th highest salary?
Hcl Placement Papers | Hcl Interview Procedure |
Hcl Aptitude Questions | Hcl Technical Questions
|Hcl Interview Questions
Is This Answer Correct ? | 36 Yes | 4 No |
Answer / raju
1 . select all the Employees who does not have phone?
Select e.Empid,e.Empname
From Employee e
left join Phone p
on p.empid = e.empid where p.phone is null
Is This Answer Correct ? | 23 Yes | 6 No |
Answer / chandrasekar
How to know How many tables contain Empno as a column in
database?
SELECT DISTINCT NAME FROM SYSOBJECTS WHERE ID IN (SELECT ID FROM SYSCOLUMNS WHERE NAME = 'EMPNO')
Is This Answer Correct ? | 20 Yes | 5 No |
Answer / suresh
6)How to find the 6th highest salary?
Select MIN(s.salary) FROM
(SELECT TOP 6 salary FROM Employee ORDER BY salary DESC)s
Is This Answer Correct ? | 23 Yes | 10 No |
Answer / babi
--1)select all the Employees who does not have phone?
SELECT * FROM EMPLOY WHERE EMPID NOT IN(SELECT EMPID FROM PHONE)
--2)Dispaly all managers from table(Manager id is same as Empid)
SELECT * FROM EMPLOY E WHERE E.EMPID=E.MGRID
--3)How to know How many tables contain Empno as a column in database?
SELECT name FROM sys.objects WHERE OBJECT_ID IN (SELECT object_id FROM sys.columns WHERE NAME like 'EMPNO')
--4)Find duplicate rows in a table or
-- if we have table with one column which has many records which are not distinct. How to find out the distinct values from that column and number of times its repeated
SELECT * FROM (
SELECT *,ROW_NUMBER()OVER(PARTITION BY EMPNAME ORDER BY EMPID ) AS NUMS FROM EMPLOY ) A WHERE NUMS>1
CREATE TABLE ONE(ID INT)
INSERT INTO ONE VALUES('1'),('2'),('3'),('4'),('5'),('1'),('2'),('3'),('4'),('5'),('1'),('2'),('3'),('4'),('5')
SELECT ID,COUNT(*) FROM ONE group by ID having COUNT(*)>1
--5) How to delete the rows which are duplicate?(Don't remove both duplicate records.)
WITH TA
AS
(
SELECT EMPID,EMPNAME,ROW_NUMBER() OVER(PARTITION BY EMPNAME ORDER BY SAL DESC ) AS Nums
FROM EMPLOY
)
DELETE FROM TA WHERE Nums>1
WITH AT
AS
(
SELECT *,ROW_NUMBER() OVER(PARTITION BY PHONENUMBER ORDER BY EMPID DESC)AS PHONENUMS FROM PHONE
)
DELETE FROM AT WHERE PHONENUMS>1
--6)how to Find 6th highest sal ?
SELECT MIN(SAL) FROM EMPLOY WHERE SAL IN(
SELECT DISTINCT TOP(6) SAL FROM EMPLOY ORDER BY SAL DESC
)
SELECT TOP 1 SAL FROM (SELECT DISTINCT TOP 6 SAL FROM EMPLOY ORDER BY SAL DESC) EMPLOY ORDER BY SAL
SELECT * FROM
( SELECT DISTINCT TOP 6 SAL , DENSE_RANK() OVER(ORDER BY SAL DESC ) AS RANKS FROM EMPLOY)
EMPLOY WHERE RANKS=6
Is This Answer Correct ? | 7 Yes | 1 No |
Answer / babi
--1)select all the Employees who does not have phone?
SELECT * FROM EMPLOY WHERE EMPID NOT IN(SELECT EMPID FROM PHONE)
Is This Answer Correct ? | 10 Yes | 4 No |
Answer / chandrasekar
SELECT COUNT(DISTINCT NAME)COUNT FROM SYSOBJECTS WHERE ID IN (SELECT ID FROM SYSCOLUMNS WHERE NAME = 'DEPOSITNO') AND NAME NOT LIKE 'SYNCOBJ%'
Is This Answer Correct ? | 7 Yes | 2 No |
Answer / susmita
2)Dispaly all managers from table(Manager id is same as
Empid)
select e.empname from tblemp as e where e.empid in (select distinct mgrid from tblemp)
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / ramesh
How to find the 6th highest salary?
select top 1 salary from
(
select top 6 salary from employee order by salary desc
)a
order by salary
Is This Answer Correct ? | 8 Yes | 5 No |
Answer / vasumathi
3)How to know How many tables contain Empno as a column in
database?
select count(c.name) as Tables,c.name as Empno from
test.sys.tables as t inner join test.sys.columns as c on
c.object_id=t.object_id and c.name='Empno' group by c.name
having count (c.name) > 0
Is This Answer Correct ? | 5 Yes | 3 No |
bhel
Placement paper
Accenture Group Discussion & Interview Questions & HR Interview - 10 Sep 2006
15 Answers Accenture, HDFC, Infosys, Ruchi Group, TCS, Unisys, Wipro,
Hi.. Guys Im pranitha, presently im working in a organisation & im look for job at MNC's like DELL, Delloitte, Bank of America, Genpect, etc., I have completed B.com . Pls help me...
CADENCE PLACEMENT PAPERS ----------- Placement Paper 1
Covansys Experienced Paper on Testing --- 2006
MBT PLACEMENT PAPERS ---- Placement Paper 2
TCS PLACEMENT PAPERS -------------- Placement Paper 3
Recently conducted Apptitude test
Cadance placement papers -------- placement paper -1
1. Finding out probability using all the methods-pdf distribution,uniform distribution,normal distribution, Gaussian distribution,independence of events, Bayes theorem. 2. C++ questions(for-loop,arrays,fuction overloading,recursive functions) 3.Algorithm checking 4.Stacks and Linked Lists 5. Analytic Questions(Hard not easy) 6.PnC 7.Questions on Chess Board
technical -electrical