Ver Mensaje Individual
  #4 (permalink)  
Antiguo 06/05/2008, 13:12
Avatar de usuariobaneado
usuariobaneado
 
Fecha de Ingreso: diciembre-2007
Mensajes: 402
Antigüedad: 17 años, 1 mes
Puntos: 5
Re: Funcion getdate como parametro de una funcion de usuario

Cita:
Iniciado por flaviovich Ver Mensaje
Intenta usar la funcion getdate() dentro una funcion.
Dios dijo dejate ayudar que te ayudaré...


Hice mi función:

Código PHP:
CREATE FUNCTION Prueba(@Fecha datetime)
RETURNS datetime 
AS 
BEGIN
    
RETURN @Fecha
END

Y luego ejecuté:

select dbo.Prueba(getdate())

Y como resultado obtuve:

2008-05-06 14:10:28.170


Tambien puedo usar el getdate() dentro de la funcion:

Código PHP:
CREATE FUNCTION Prueba()
RETURNS datetime 
AS 
BEGIN
    
declare @Fecha datetime
    set 
@Fecha getdate()
    RETURN @
Fecha
END

Y ejecuto:

select dbo.Prueba()

Sin error


Si pusieras tu código y el mensaje de error te harías un bonito favor
__________________
Yo quiero ser el pelucón del barrio

Última edición por usuariobaneado; 06/05/2008 a las 13:17 Razón: Adicionar el segundo ejemplo