Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Write a stored procedure for emplpoyee and department table
to get DeptName which having no employee.
Table Structure-
Emp-Emp_Id,Emp_Name,Dept_id
Dept-Dept_Id,Dept_Name

Answers were Sorted based on User's Feedback



Write a stored procedure for emplpoyee and department table to get DeptName which having no employ..

Answer / madhuparna bhaumik

/*stored procedure for emplpoyee and department table
to get DeptName which having no employee*/

CREATE PROCEDURE sp_myStoredProcedure
AS
select * from emp full join departments on
emp.department_id=departments.department_id
where employee_id is null;
Go

Is This Answer Correct ?    9 Yes 0 No

Write a stored procedure for emplpoyee and department table to get DeptName which having no employ..

Answer / vinoth kumar

select * from department where Dept_id
not in(select Dept_id
from employee)

Is This Answer Correct ?    4 Yes 0 No

Write a stored procedure for emplpoyee and department table to get DeptName which having no employ..

Answer / ayush

create proc DeptName
begin
select * from emp full join dept on emp.deptno=dept.deptno
where empno is null;
end

Is This Answer Correct ?    3 Yes 0 No

Write a stored procedure for emplpoyee and department table to get DeptName which having no employ..

Answer / sivaram pothuru

select * from emp full join dept on emp.deptno=dept.deptno
where empno is null;

Is This Answer Correct ?    4 Yes 3 No

Write a stored procedure for emplpoyee and department table to get DeptName which having no employ..

Answer / unnikrishnan nair r

CREATE PROCEDURE GetDept
AS
SELECT Dept_name from dept
WHERE Dept_Id NOT IN(SELECT DISTINCT Dept_id FROM Emp )

Is This Answer Correct ?    1 Yes 1 No

Write a stored procedure for emplpoyee and department table to get DeptName which having no employ..

Answer / sql pro

/*stored procedure for emplpoyee and department table
to get DeptName which has no employee records*/

select d.dept_name
from dept d
left join empl e
on d.dept_id = e.dept_id
where e.dept_id is null

Is This Answer Correct ?    1 Yes 1 No

Write a stored procedure for emplpoyee and department table to get DeptName which having no employ..

Answer / sivaram pothuru

select a.*,d.* from dept a
left join emp d on a.deptno=d.deptno where d.deptno is null

Is This Answer Correct ?    4 Yes 5 No

Post New Answer

More SQL Server Interview Questions

What is bit datatype and what's the information that can be stored inside a bit column?

1 Answers  


What type of locking occurs during the snapshot generation? : sql server replication

0 Answers  


Can a unique index be created on a column, which contains null?

0 Answers  


What is Check point? Explain in Brief what it will do?

1 Answers   Wipro,


Why is sql server log file full?

0 Answers  


What are orphan records?

0 Answers  


What will be the value of @@fetch_status if a row that was a part of the cursor resultset has been deleted from the database after the time the stored procedure that opened the cursor was executed?

0 Answers  


What is a join in sql? What are the types of joins?

0 Answers  


What is the difference between a view and a stored procedure?

0 Answers  


How to update muliple row in single query?

0 Answers   MCN Solutions,


What are the different authentication modes in sql server? How can it be changed?

0 Answers  


What are the parts of a function?

0 Answers  


Categories