Ver Mensaje Individual
  #2 (permalink)  
Antiguo 25/04/2008, 17:08
Avatar de flaviovich
flaviovich
 
Fecha de Ingreso: agosto-2005
Ubicación: Lima, Peru
Mensajes: 2.951
Antigüedad: 19 años, 5 meses
Puntos: 39
Re: Problemas Con Convert !!! Ayuda Porfavor

Código:
DECLARE @FechaHoy SMALLDATETIME
SET @FechaHoy = '25/04/2008'
SELECT convert(varchar(2),datepart(mm,@FechaHoy))+ '/'+ convert(varchar(2),datepart(dd,@FechaHoy))+ '/'+ convert(varchar(4),datepart(yyyy,@FechaHoy))
SELECT CONVERT(VARCHAR(10),@FechaHoy,101)
No seria mejor la segunda forma?
__________________
No repitamos temas, usemos el Motor de busquedas
Plantea bien tu problema: Ayúdanos a ayudarte.