Click here to Skip to main content
15,887,892 members
Home / Discussions / Database
   

Database

 
AnswerRe: Need some help with deleting process Pin
razov12-Sep-08 0:11
razov12-Sep-08 0:11 
GeneralRe: Need some help with deleting process Pin
MarkB77712-Sep-08 0:17
MarkB77712-Sep-08 0:17 
GeneralRe: Need some help with deleting process Pin
razov12-Sep-08 0:37
razov12-Sep-08 0:37 
GeneralRe: Need some help with deleting process Pin
MarkB77712-Sep-08 0:44
MarkB77712-Sep-08 0:44 
GeneralRe: Need some help with deleting process Pin
razov12-Sep-08 0:50
razov12-Sep-08 0:50 
AnswerRe: Need some help with deleting process Pin
nelsonpaixao12-Sep-08 14:36
nelsonpaixao12-Sep-08 14:36 
QuestionHow to get the first and last record in every group? Pin
followait11-Sep-08 20:18
followait11-Sep-08 20:18 
AnswerRe: How to get the first and last record in every group? Pin
Blue_Boy11-Sep-08 20:43
Blue_Boy11-Sep-08 20:43 
select distinct data,<br />
(select top 1 (t1.num) from myTable as t1 where t1.data = myTable.data order by t1.id ) as firstRow,<br />
(select top 1 (t2.num) from myTable as t2 where t2.data = myTable.data order by t2.id desc) as LastRow<br />
 from myTable 



I Love T-SQL
"Don't torture yourself,let the life to do it for you."
If my post helps you kindly save my time by voting my post.


GeneralRe: How to get the first and last record in every group? Pin
followait11-Sep-08 21:53
followait11-Sep-08 21:53 
GeneralRe: How to get the first and last record in every group? Pin
Blue_Boy11-Sep-08 22:17
Blue_Boy11-Sep-08 22:17 
GeneralRe: How to get the first and last record in every group? Pin
followait12-Sep-08 6:15
followait12-Sep-08 6:15 
GeneralRe: How to get the first and last record in every group? Pin
followait12-Sep-08 17:20
followait12-Sep-08 17:20 
QuestionNested Stored Procedure Pin
jonhbt11-Sep-08 19:51
jonhbt11-Sep-08 19:51 
AnswerRe: Nested Stored Procedure Pin
Ashfield11-Sep-08 20:55
Ashfield11-Sep-08 20:55 
AnswerRe: Nested Stored Procedure Pin
Mycroft Holmes11-Sep-08 20:58
professionalMycroft Holmes11-Sep-08 20:58 
GeneralRe: Nested Stored Procedure Pin
Venkat Eswaran12-Sep-08 7:02
Venkat Eswaran12-Sep-08 7:02 
GeneralRe: Nested Stored Procedure Pin
Mycroft Holmes12-Sep-08 12:47
professionalMycroft Holmes12-Sep-08 12:47 
QuestionProblem while importing data to Microsoft Sql Server 2005 from .csv file Pin
a_b11111-Sep-08 19:15
a_b11111-Sep-08 19:15 
AnswerRe: Problem while importing data to Microsoft Sql Server 2005 from .csv file Pin
Ashfield11-Sep-08 20:58
Ashfield11-Sep-08 20:58 
AnswerRe: Problem while importing data to Microsoft Sql Server 2005 from .csv file Pin
Mycroft Holmes11-Sep-08 21:02
professionalMycroft Holmes11-Sep-08 21:02 
GeneralRe: Problem while importing data to Microsoft Sql Server 2005 from .csv file Pin
a_b11111-Sep-08 21:22
a_b11111-Sep-08 21:22 
GeneralRe: Problem while importing data to Microsoft Sql Server 2005 from .csv file Pin
Mycroft Holmes11-Sep-08 22:03
professionalMycroft Holmes11-Sep-08 22:03 
AnswerRe: Problem while importing data to Microsoft Sql Server 2005 from .csv file Pin
dojohansen12-Sep-08 1:42
dojohansen12-Sep-08 1:42 
QuestionSingle DTS Row to Multiple destination rows Pin
geekfromindia11-Sep-08 16:27
geekfromindia11-Sep-08 16:27 
AnswerRe: Single DTS Row to Multiple destination rows Pin
razov11-Sep-08 23:24
razov11-Sep-08 23:24 

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.