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

Database

 
QuestionSQL Serevr Agent 2005 Pin
Saiyed Alam9-Sep-08 5:32
Saiyed Alam9-Sep-08 5:32 
AnswerRe: SQL Serevr Agent 2005 Pin
Wendelius9-Sep-08 5:38
mentorWendelius9-Sep-08 5:38 
AnswerRe: SQL Serevr Agent 2005 Pin
Blue_Boy9-Sep-08 5:55
Blue_Boy9-Sep-08 5:55 
QuestionSelect cellection of bit fields if is true ?? Pin
kindman_nb9-Sep-08 4:18
kindman_nb9-Sep-08 4:18 
AnswerRe: Select cellection of bit fields if is true ?? Pin
Manas Bhardwaj9-Sep-08 4:38
professionalManas Bhardwaj9-Sep-08 4:38 
AnswerRe: Select cellection of bit fields if is true ?? Pin
Blue_Boy9-Sep-08 4:48
Blue_Boy9-Sep-08 4:48 
AnswerRe: Select cellection of bit fields if is true ?? Pin
Wendelius9-Sep-08 7:58
mentorWendelius9-Sep-08 7:58 
AnswerRe: Select cellection of bit fields if is true ?? Pin
PIEBALDconsult9-Sep-08 9:21
mvePIEBALDconsult9-Sep-08 9:21 
GeneralRe: Select cellection of bit fields if is true ?? Pin
kindman_nb9-Sep-08 13:43
kindman_nb9-Sep-08 13:43 
GeneralRe: Select cellection of bit fields if is true ?? Pin
PIEBALDconsult9-Sep-08 14:12
mvePIEBALDconsult9-Sep-08 14:12 
QuestionParadox to Sql Server Database Pin
TheEagle9-Sep-08 2:23
TheEagle9-Sep-08 2:23 
AnswerRe: Paradox to Sql Server Database Pin
User 17164929-Sep-08 4:39
professionalUser 17164929-Sep-08 4:39 
Questiondatediff problem Pin
imranafsari8-Sep-08 23:38
imranafsari8-Sep-08 23:38 
AnswerRe: datediff problem Pin
ChandraRam9-Sep-08 0:08
ChandraRam9-Sep-08 0:08 
AnswerRe: datediff problem Pin
Manas Bhardwaj9-Sep-08 0:21
professionalManas Bhardwaj9-Sep-08 0:21 
AnswerRe: datediff problem Pin
Blue_Boy9-Sep-08 3:25
Blue_Boy9-Sep-08 3:25 
AnswerRe: datediff problem Pin
nelsonpaixao9-Sep-08 14:19
nelsonpaixao9-Sep-08 14:19 
QuestionSQL Query to find Timedifference between 2 items whose ID is same but different Status Pin
DrukenProgrammer8-Sep-08 9:21
DrukenProgrammer8-Sep-08 9:21 
AnswerRe: SQL Query to find Timedifference between 2 items whose ID is same but different Status Pin
Wendelius8-Sep-08 9:28
mentorWendelius8-Sep-08 9:28 
GeneralRe: SQL Query to find Timedifference between 2 items whose ID is same but different Status Pin
DrukenProgrammer8-Sep-08 9:39
DrukenProgrammer8-Sep-08 9:39 
GeneralRe: SQL Query to find Timedifference between 2 items whose ID is same but different Status Pin
Wendelius8-Sep-08 9:46
mentorWendelius8-Sep-08 9:46 
Since I didn't know the actual name for your table I used only TableName. Let's say your table is named WorkData then the query would look like:
...
FROM WorkData start,
     WorkData end
...


Start and end are aliases for the same table so that it can be referred twice. I used start alias (the alias can be whatever you want) for the row that defines the starting point for time and respectively end for ending point.

Hope this helps,

Mika
GeneralRe: SQL Query to find Timedifference between 2 items whose ID is same but different Status Pin
DrukenProgrammer8-Sep-08 9:50
DrukenProgrammer8-Sep-08 9:50 
GeneralRe: SQL Query to find Timedifference between 2 items whose ID is same but different Status Pin
Wendelius8-Sep-08 9:54
mentorWendelius8-Sep-08 9:54 
GeneralRe: SQL Query to find Timedifference between 2 items whose ID is same but different Status Pin
DrukenProgrammer8-Sep-08 9:59
DrukenProgrammer8-Sep-08 9:59 
GeneralRe: SQL Query to find Timedifference between 2 items whose ID is same but different Status Pin
Wendelius8-Sep-08 10:01
mentorWendelius8-Sep-08 10:01 

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.