How to find out name of all employees who has salary less
than 200 Rs.?
Answers were Sorted based on User's Feedback
Answer / praveen kumar.dandu
select ename from emp where sal<200
Is This Answer Correct ? | 4 Yes | 2 No |
Answer / tasneemuddin
Select <Employee Name Field> From <Table Name> Where <Salary
Field> < 2000
Is This Answer Correct ? | 1 Yes | 0 No |
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 |
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 |
Are semicolons required at the end of sql statements in sql server 2005?
Which Model uses the SET concept
What is trace flag in sql server?
What is sql view?
Difference b/w Clustered & non-clustered index? Not the bookish definition, but how they internally works in SQL Server?
how do we find every fifth record in a table
What is 'write-ahead log' in sql server 2000 ?
When do u use clustered index and non-clustered index?
How to select all columns of all rows from a table with a select statement in ms sql server?
How to convert a unicode strings to non-unicode strings?
How can I track the changes or identify the latest insert-update-delete from a table?
What gets stored inside msdb database?