Viewing 2 posts - 1 through 2 (of 2 total)
OK.
Thanks.
June 23, 2011 at 6:56 am
#1342994
This is my function (made by a colleague):
ALTER FUNCTION [dbo].[udf_datum] (@invoer smalldatetime)
RETURNS nvarchar(10) AS
BEGIN
declare @uitvoer nvarchar(10)
set @uitvoer = CONVERT(nvarchar(10), @invoer, 101)
return @uitvoer
END
June 23, 2011 at 5:19 am
#1342925