Click here to Skip to main content
15,790,917 members
Home / Discussions / Database
   

Database

 
QuestionFilling many to many rel table using Select statement Pin
indian14314-Oct-15 8:18
indian14314-Oct-15 8:18 
AnswerRe: Filling many to many rel table using Select statement Pin
Mycroft Holmes14-Oct-15 13:50
professionalMycroft Holmes14-Oct-15 13:50 
GeneralRe: Filling many to many rel table using Select statement Pin
KDGOLE14-Oct-15 22:27
KDGOLE14-Oct-15 22:27 
GeneralRe: Filling many to many rel table using Select statement Pin
indian14317-Oct-15 7:17
indian14317-Oct-15 7:17 
GeneralRe: Filling many to many rel table using Select statement Pin
indian14319-Oct-15 11:30
indian14319-Oct-15 11:30 
QuestionGet check time from separate fields in Microsoft SQL Server Pin
Jassim Rahma14-Oct-15 1:11
Jassim Rahma14-Oct-15 1:11 
AnswerRe: Get check time from separate fields in Microsoft SQL Server Pin
Mycroft Holmes14-Oct-15 2:11
professionalMycroft Holmes14-Oct-15 2:11 
GeneralRe: Get check time from separate fields in Microsoft SQL Server Pin
Chris Quinn14-Oct-15 3:30
Chris Quinn14-Oct-15 3:30 
You can simplify slightly
SQL
DECLARE @ODate DATE
DECLARE @OHour INT = 8
DECLARE @OMin INT = 23
DECLARE @OpenDT DATETIME
declare @DOB DATE = getdate()  --Or whatever date drom the database
SELECT @OpenDT = @DOB

SELECT @OpenDT = DATEADD(MINUTE,(@OHour * 60) + @OMin, @OpenDT)

PRINT @OpenDT
=========================================================
I'm an optoholic - my glass is always half full of vodka.
=========================================================

GeneralRe: Get check time from separate fields in Microsoft SQL Server Pin
Richard Deeming14-Oct-15 3:47
mveRichard Deeming14-Oct-15 3:47 
GeneralRe: Get check time from separate fields in Microsoft SQL Server Pin
Chris Quinn14-Oct-15 3:50
Chris Quinn14-Oct-15 3:50 
QuestionInsert within Select Statement Pin
indian14313-Oct-15 8:50
indian14313-Oct-15 8:50 
AnswerRe: Insert within Select Statement Pin
Richard Deeming13-Oct-15 9:43
mveRichard Deeming13-Oct-15 9:43 
GeneralRe: Insert within Select Statement Pin
indian14313-Oct-15 9:58
indian14313-Oct-15 9:58 
GeneralRe: Insert within Select Statement Pin
indian14313-Oct-15 11:28
indian14313-Oct-15 11:28 
AnswerRe: Insert within Select Statement Pin
Mycroft Holmes13-Oct-15 23:55
professionalMycroft Holmes13-Oct-15 23:55 
QuestionSort GetChildRow datarow array Pin
BobW99912-Oct-15 3:58
BobW99912-Oct-15 3:58 
AnswerRe: Sort GetChildRow datarow array Pin
Mycroft Holmes12-Oct-15 14:07
professionalMycroft Holmes12-Oct-15 14:07 
GeneralRe: Sort GetChildRow datarow array Pin
BobW99912-Oct-15 18:34
BobW99912-Oct-15 18:34 
GeneralRe: Sort GetChildRow datarow array Pin
Mycroft Holmes12-Oct-15 18:40
professionalMycroft Holmes12-Oct-15 18:40 
SuggestionNeed to Optimize this Query Pin
Member 1205173712-Oct-15 0:33
Member 1205173712-Oct-15 0:33 
QuestionTimeline for Work Completion Pin
macca249-Oct-15 1:48
macca249-Oct-15 1:48 
AnswerRe: Timeline for Work Completion Pin
CHill609-Oct-15 3:12
mveCHill609-Oct-15 3:12 
QuestionMSSQL behavior: I need to round instead of truncation when number scale is exceeded Pin
px058-Oct-15 22:32
px058-Oct-15 22:32 
AnswerRe: MSSQL behavior: I need to round instead of truncation when number scale is exceeded Pin
GuyThiebaut9-Oct-15 0:04
professionalGuyThiebaut9-Oct-15 0:04 
GeneralRe: MSSQL behavior: I need to round instead of truncation when number scale is exceeded Pin
px059-Oct-15 0:26
px059-Oct-15 0:26 

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.