Click here to Skip to main content
15,909,445 members
Home / Discussions / Database
   

Database

 
AnswerRe: SQL query Pin
Tripathi Swati19-Aug-08 2:48
Tripathi Swati19-Aug-08 2:48 
GeneralRe: SQL query Pin
Zafar Sultan21-Aug-08 4:27
Zafar Sultan21-Aug-08 4:27 
GeneralRe: SQL query Pin
Tripathi Swati21-Aug-08 19:09
Tripathi Swati21-Aug-08 19:09 
GeneralRe: SQL query Pin
Zafar Sultan22-Aug-08 1:12
Zafar Sultan22-Aug-08 1:12 
Questionfirst three highest salaries Pin
chithra.r18-Aug-08 23:19
chithra.r18-Aug-08 23:19 
AnswerRe: first three highest salaries Pin
Tripathi Swati18-Aug-08 23:28
Tripathi Swati18-Aug-08 23:28 
GeneralRe: first three highest salaries Pin
chithra.r19-Aug-08 6:54
chithra.r19-Aug-08 6:54 
GeneralRe: first three highest salaries Pin
Wendelius19-Aug-08 8:06
mentorWendelius19-Aug-08 8:06 
I wonder why you don't want to use TOP, but here's another version:
SELECT Name, Salary
FROM   TableName alias1,
WHERE  4 < (SELECT COUNT(*)
            FROM   TableName alias2
            WHERE  alias2.Salary > alias1.Salary)

Mika
GeneralRe: first three highest salaries Pin
TheFM23419-Aug-08 18:36
TheFM23419-Aug-08 18:36 
QuestionView ??????? Pin
.NET- India 18-Aug-08 22:36
.NET- India 18-Aug-08 22:36 
AnswerRe: View ??????? Pin
That's Aragon19-Aug-08 1:19
That's Aragon19-Aug-08 1:19 
GeneralRe: View ??????? Pin
netJP12L19-Aug-08 4:14
netJP12L19-Aug-08 4:14 
AnswerRe: View ??????? Pin
John_Adams19-Aug-08 3:25
John_Adams19-Aug-08 3:25 
AnswerRe: View ??????? Pin
Jerry Hammond19-Aug-08 5:29
Jerry Hammond19-Aug-08 5:29 
AnswerRe: View ??????? Pin
Wendelius19-Aug-08 7:50
mentorWendelius19-Aug-08 7:50 
QuestionHow to restore backup file from sqlserver2005 to sqlserver2000? Pin
Ashish Kumar Vyas18-Aug-08 19:50
Ashish Kumar Vyas18-Aug-08 19:50 
AnswerRe: How to restore backup file from sqlserver2005 to sqlserver2000? Pin
Colin Angus Mackay18-Aug-08 21:27
Colin Angus Mackay18-Aug-08 21:27 
AnswerRe: How to restore backup file from sqlserver2005 to sqlserver2000? Pin
Tripathi Swati18-Aug-08 21:40
Tripathi Swati18-Aug-08 21:40 
GeneralRe: How to restore backup file from sqlserver2005 to sqlserver2000? Pin
Ashish Kumar Vyas18-Aug-08 23:22
Ashish Kumar Vyas18-Aug-08 23:22 
GeneralRe: How to restore backup file from sqlserver2005 to sqlserver2000? [modified] [follow d below steps] Pin
Tripathi Swati18-Aug-08 23:30
Tripathi Swati18-Aug-08 23:30 
GeneralRe: How to restore backup file from sqlserver2005 to sqlserver2000? Pin
Blue_Boy19-Aug-08 0:58
Blue_Boy19-Aug-08 0:58 
General[Message Deleted] Pin
Tripathi Swati19-Aug-08 1:12
Tripathi Swati19-Aug-08 1:12 
GeneralRe: How to restore backup file from sqlserver2005 to sqlserver2000? Pin
Blue_Boy19-Aug-08 1:18
Blue_Boy19-Aug-08 1:18 
GeneralRe: How to restore backup file from sqlserver2005 to sqlserver2000? [modified] [follow d below steps] Pin
Ashish Kumar Vyas19-Aug-08 2:11
Ashish Kumar Vyas19-Aug-08 2:11 
GeneralRe: How to restore backup file from sqlserver2005 to sqlserver2000? Pin
Tripathi Swati19-Aug-08 3:14
Tripathi Swati19-Aug-08 3:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.