Department
-----------
salary Deptname
1000 A
3000 A
2000 B
3000 B
4000 C
5000 C
select the deptname where salary >=5000
result should be:
Deptname
---------
C
please post only executed query in SQL server 2005
Asked By: Md. Niyaz
Answer Posted / rajkumar
Select Deptname from Department Where salary >=5000
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is raiseerror? What is raiseerror?
What is the difference between clustered index and primary key?
Explain the characteristics of a transaction server for example atomicity, consistency, isolation, durability?
Will sql server 2005 allow you to reduce the size of a column?
What is database white box testing?
What is master database? : SQL Server Architecture
Define Business Edition in SQL Azure?
How to drop an existing stored procedure in ms sql server?
How much does sql server 2016 cost?
Write an sql query to find first weekday of the month?
Can we use where and having clause together?
Where are SQL server users names and passwords are stored in sql server?
Do you think BCNF is better than 2NF & 3NF? Why?
What is the default Port No on which SQL Server listens?
Hi, I Created 3 Tables Person(PersID[prkey],Name,Email,Password), Project(ProjName,ProjID[prkey],ProjLeader,ProjManager) & ProjectInvolvement(EntryDate,ProjID[frkey],PersID[frkey],ProjDuration). For this how can i INSERT,UPDATE & DELETE Through PROCEDURE? Please Post the Answer for me. Desai.