日期转换为中文大写ALTER FUNCTION GetCNDay
(
@dt
)
RETURNS Nvarchar(50)
AS
BEGIN
DECLARE @str Nvarchar(50) -- 中间字符串,用于存储
2019-08-19