server中如何將獲取日期和時間值賦值給一個變量?
可用如下方法:
declare @time datetime --定義變量select @time=getdate() --獲取當前日期時間并賦值給變量print @time --輸入打印變量內容執行結果:如果覺得顯示不方便,可將時間類型的內容進行轉換,存儲過程寫法可改為:
declare @time varchar(20)select @time=convert(varchar(20),getdate(),120)print @time輸出結果如下: