holas
tengo un campo de tipo datetime y necesito trabajar solo con la hora de un registro, es posible hacerlo??? como si se usara la funcion year, day o month
saludos
| ||||
sip, este es el sql SELECT CONVERT(nvarchar(2), dFecha, 108), count(id) as cantidad FROM Error500_Detalle WHERE day(dFecha) = 5 and month(dFecha) = 9 and year(dFecha) = 2006 GROUP BY CONVERT(nvarchar(8), dFecha, 108) ORDER BY year(dFecha), month(dFecha), day(dFecha) y este es el error Column 'Error500_Detalle.dFecha' is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause. Column name 'Error500_Detalle.dFecha' is invalid in the ORDER BY clause because it is not contained in either an aggregate function or the GROUP BY clause. |
| ||||
Respuesta: agrupar por hora o devolver la hora de una fecha Cita: Tratemos de hacer comentarios que aporten algo de utilidad.Saludos!
__________________ La sencillez y naturalidad son el supremo y último fin de la cultura... -- MCTS : SQL Server 2008, .NET Framework 3.5, ASP.NET Applications. |