Hi,
I would like a stored procedure to return
a datetime variable.
However it complains that it needs an int.
Is there a way to return it without
doing a convert or cast?
The SP looks like
<START>
blah blah
declare @TIME datetime
SET @TIME = GETDATE()
blah blah
return @TIME
<END>
Thanks!
ds
I would like a stored procedure to return
a datetime variable.
However it complains that it needs an int.
Is there a way to return it without
doing a convert or cast?
The SP looks like
<START>
blah blah
declare @TIME datetime
SET @TIME = GETDATE()
blah blah
return @TIME
<END>
Thanks!
ds