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

explain different types of backups avaialabe in sql server? : Sql server database administration

0 Answers  


what is Buffer cash and Log Cache? Can you Explain it?

1 Answers   Wipro,


what is replication? where do u use Go Keyword?

1 Answers   Satyam,


What is the purpose of object explorer and its features? : sql server management studio

0 Answers  


Explain sql delete command?

0 Answers  






What is a constant or literal in ms sql server?

0 Answers  


Can we write a distributed query and get some data which is located on other server and oracle database?

0 Answers  


Do you know what are the reporting services components?

0 Answers  


Name three version of sql server 2000 and also their differences?

1 Answers  


tell me what is blocking and how would you troubleshoot it? : Sql server database administration

0 Answers  


What is an identity?

0 Answers  


Why do we use sql limitations? Which constraints can we use while making a database in sql?

0 Answers  


Categories