|
|
|
This scripts shows how to obtain minimum value of four 4 datatime values contained in local variables. This method can be adapted to any datatye supported by the the SQL Server MIN function. This technique basically eliminates the writing of series of IF..ELSE or CASE statements. |
Click here to copy the following block | DECLARE @d1 datetime , @d2 datetime , @d3 datetime , @d4 datetime , @MinDate datetime SELECT @d1 = DATEADD( dd, ( RAND()*10 + 1 ) , CURRENT_TIMESTAMP ) , @d2 = DATEADD( dd, ( RAND()*10 + 1 ) , CURRENT_TIMESTAMP ) , @d3 = DATEADD( dd, ( RAND()*10 + 1 ) , CURRENT_TIMESTAMP ) , @d4 = DATEADD( dd, ( RAND()*10 + 1 ) , CURRENT_TIMESTAMP ) PRINT 'Date #1: ' + CAST( @d1 AS varchar ) PRINT 'Date #2: ' + CAST( @d2 AS varchar ) PRINT 'Date #3: ' + CAST( @d3 AS varchar ) PRINT 'Date #4: ' + CAST( @d4 AS varchar )
SELECT @MinDate = MIN( dateval ) FROM ( SELECT @d1 AS dateval UNION ALL SELECT @d2 UNION ALL SELECT @d3 UNION ALL SELECT @d4 ) AS d PRINT 'Min. Date: ' + CAST( @MinDate AS varchar )
|
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
 |

|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|