Click here to Skip to main content
15,908,901 members
Home / Discussions / Database
   

Database

 
AnswerRe: How I can get a particular row in view for sql 2000? Pin
Wendelius13-Aug-08 8:22
mentorWendelius13-Aug-08 8:22 
GeneralRe: How I can get a particular row in view for sql 2000? Pin
Tripathi Swati18-Aug-08 23:00
Tripathi Swati18-Aug-08 23:00 
QuestionHow can I get match with any one of Table2 Pin
azusakt12-Aug-08 23:06
azusakt12-Aug-08 23:06 
AnswerRe: How can I get match with any one of Table2 [modified] Pin
Blue_Boy13-Aug-08 1:19
Blue_Boy13-Aug-08 1:19 
QuestionRetrieve duplicate and non duplicate query Pin
sujtha12-Aug-08 20:35
sujtha12-Aug-08 20:35 
AnswerRe: Retrieve duplicate and non duplicate query Pin
soni uma12-Aug-08 20:51
soni uma12-Aug-08 20:51 
GeneralRe: Retrieve duplicate and non duplicate query Pin
Blue_Boy12-Aug-08 21:23
Blue_Boy12-Aug-08 21:23 
AnswerRe: Retrieve duplicate and non duplicate query Pin
Blue_Boy12-Aug-08 21:22
Blue_Boy12-Aug-08 21:22 
here it is:

SELECT  <br />
(SELECT TOP 1 t1.id FROM dbo.TableName AS t1 WHERE t1.salary = dbo.TableName.salary) AS id ,<br />
(SELECT TOP 1 t1.empno FROM dbo.TableName AS t1 WHERE t1.salary = dbo.TableName.salary) AS empno, <br />
salary,<br />
(SELECT TOP 1 t1.empname FROM dbo.TableName AS t1 WHERE t1.salary = dbo.TableName.salary) AS empname<br />
FROM dbo.TableName<br />
GROUP BY salary<br />
ORDER BY id ASC



I Love T-SQL
"Don't torture yourself,let the life to do it for you."

GeneralRe: Retrieve duplicate and non duplicate query Pin
sujtha12-Aug-08 23:12
sujtha12-Aug-08 23:12 
GeneralRe: Retrieve duplicate and non duplicate query Pin
Blue_Boy13-Aug-08 2:01
Blue_Boy13-Aug-08 2:01 
GeneralRe: Retrieve duplicate and non duplicate query Pin
sujtha13-Aug-08 2:15
sujtha13-Aug-08 2:15 
GeneralRe: Retrieve duplicate and non duplicate query Pin
Blue_Boy13-Aug-08 2:18
Blue_Boy13-Aug-08 2:18 
QuestionError while executing the Stored Procedure Pin
K V Sekhar12-Aug-08 20:04
K V Sekhar12-Aug-08 20:04 
AnswerRe: Error while executing the Stored Procedure Pin
SleepingHades12-Aug-08 20:40
SleepingHades12-Aug-08 20:40 
GeneralRe: Error while executing the Stored Procedure Pin
K V Sekhar12-Aug-08 20:45
K V Sekhar12-Aug-08 20:45 
GeneralRe: Error while executing the Stored Procedure Pin
SleepingHades12-Aug-08 21:03
SleepingHades12-Aug-08 21:03 
GeneralRe: Error while executing the Stored Procedure Pin
K V Sekhar12-Aug-08 21:30
K V Sekhar12-Aug-08 21:30 
GeneralRe: Error while executing the Stored Procedure [modified] Pin
SleepingHades12-Aug-08 21:39
SleepingHades12-Aug-08 21:39 
GeneralRe: Error while executing the Stored Procedure Pin
K V Sekhar12-Aug-08 21:57
K V Sekhar12-Aug-08 21:57 
QuestionDeadlocks Pin
DotNetMan12-Aug-08 15:22
DotNetMan12-Aug-08 15:22 
AnswerRe: Deadlocks Pin
Ashfield13-Aug-08 2:10
Ashfield13-Aug-08 2:10 
AnswerSP_LOCK2 Pin
David Mujica13-Aug-08 2:18
David Mujica13-Aug-08 2:18 
AnswerRe: Deadlocks Pin
Wendelius13-Aug-08 7:58
mentorWendelius13-Aug-08 7:58 
AnswerRe: Deadlocks Pin
Tripathi Swati18-Aug-08 23:08
Tripathi Swati18-Aug-08 23:08 
Questiondbase deisgn question Pin
bfis10813712-Aug-08 10:15
bfis10813712-Aug-08 10:15 

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.