How to find out name of all employees who has salary less
than 200 Rs.?

Answers were Sorted based on User's Feedback



How to find out name of all employees who has salary less than 200 Rs.?..

Answer / bhaksar

select Emp_Name from emptable where sal < 200

Is This Answer Correct ?    26 Yes 2 No

How to find out name of all employees who has salary less than 200 Rs.?..

Answer / praveen kumar.dandu

select ename from emp where sal<200

Is This Answer Correct ?    4 Yes 2 No

How to find out name of all employees who has salary less than 200 Rs.?..

Answer / tasneemuddin

Select <Employee Name Field> From <Table Name> Where <Salary
Field> < 2000

Is This Answer Correct ?    1 Yes 0 No

How to find out name of all employees who has salary less than 200 Rs.?..

Answer / jay

select * from Employees where Salary <200

Is This Answer Correct ?    1 Yes 1 No

How to find out name of all employees who has salary less than 200 Rs.?..

Answer / manu

select emp<e name field>,sal<Sal field> from employees <Table name>
where sal<Sal field> < 200

Note: Field = Table column name......


enjoy... this is simple query

Is This Answer Correct ?    1 Yes 1 No

How to find out name of all employees who has salary less than 200 Rs.?..

Answer / afan

SELECT Name
From Employees
Where Salary<200

Is This Answer Correct ?    1 Yes 1 No

How to find out name of all employees who has salary less than 200 Rs.?..

Answer / juergen

Is this a real question???? First off, with all the
asterixes is wrong. Just want the employees.

select AiFirstName, AiEmpLastName
from AiEmployees
where AiSalary < 200

Is This Answer Correct ?    0 Yes 2 No

How to find out name of all employees who has salary less than 200 Rs.?..

Answer / aditya

select *from <table name>where sal<20

Is This Answer Correct ?    7 Yes 11 No

Post New Answer

More SQL Server Interview Questions

How many types of relations are there between dimension and measure group? : sql server analysis services, ssas

0 Answers  


In which files does sql server actually store data?

0 Answers  


Difference between report and query parameter.

0 Answers  


What is Dependency Injection and provide example?

0 Answers  


What are the different types of upgrades that can be performed in sql server?

0 Answers  






What does it mean to normalize a database and why would you do it?

0 Answers  


What are transactions in sql?

0 Answers  


can we have a nested transaction? : Sql server database administration

0 Answers  


What is a mutating table error and how can you get around it?

0 Answers  


What is a data collection table?

0 Answers  


There is a table1 with records (1,2,3,4,5,6) and table2 with records (4,5,6,7,8,9).write a query so as to get the result as 1,2,3,4,5,6,7,8,9

12 Answers   RBS,


Explain about extended stored procedure?

0 Answers  


Categories