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

why would you call update statistics? : Sql server database administration

0 Answers  


Please give me the SP for the below scenario. I have two tables named Table1 and Table2...I need to fetch record by record from Table1 and insert the record in to table2 where the value in the sno column of the table1 is even number.

4 Answers   Value Labs,


What is database normalization?

7 Answers   Deloitte, Digicel, JPMorgan Chase, Verifone,


Beginning with sql server version 7 0, a new enhanced data type nchar was added what type of data is supported with this data type?

0 Answers  


Difference between: - Delete & Truncate - Table & View - Constraints & Triggers

1 Answers   United Healthcare,






How to replace the Query Result 'Null Value' with a text ?

0 Answers   MCN Solutions,


What is star, snowflake and star flake schema? : sql server analysis services, ssas

0 Answers  


What are information schema views?

0 Answers  


How does a profiler work?

0 Answers  


How to convert character strings into numeric values?

0 Answers  


What does the automatic recovery do?

0 Answers  


What are temporal tables in sql server 2016?

0 Answers  


Categories