我在下面有以下功能。dateformat不如預期
它返回的日期類似Feb 29 2012 10:00 PM。有沒有一種方法,使其返回格式2012/2/29 10:00 PM
CREATE FUNCTION scrubDateString
(
-- Add the parameters for the function here
@inputDate varchar(150)
)
RETURNS DATETIME
AS
BEGIN
-- Declare the return variable here
DECLARE @Result DATETIME
-- Add the T-SQL statements to compute the return value here
DECLARE @tmpDate datetime
SET @Result = null
IF (ISDATE(@inputDate)=1)
BEGIN
SET @Result = DATEADD(HH, 5, @inputDate)
END
-- Return the result of the function
RETURN @Result
END
我如何考慮UTC時間,例如此功能將負責更新數據庫表。基於安裝程序執行的位置,我需要使用此函數返回utc時間。 – Rod 2012-02-29 02:34:54