Formatos de datos en SQL


/ Published in: SQL
Save to your folder(s)

Alternativas para formato de datos en sql server


Copy this code and paste it in your HTML
  1. -- Fechas
  2. FORMAT(exi.fecha_inventario,'dd/mm/yyyy') Levantamiento
  3.  
  4. CONVERT(VARCHAR(10), exi.fecha_inventario, 103) Levantamiento
  5.  
  6. -- Decimal 2 digitos
  7. CONVERT(DECIMAL(10,2),SUM(Productividad.TbCaptura.PromConsultaDia)) AS PromConsultaDia
  8.  
  9. Para referencias:
  10.  
  11. https://sites.google.com/site/lagaterainformatica/home/-net/SQL/-sql-server-formato-fechas
  12.  
  13. //Sumas dias o mes a la fecha
  14. /*suma fechas*/
  15. DECLARE @dias AS INTEGER =14;
  16. SELECT dateadd(d,@dias,getdate())
  17.  
  18. DECLARE @mes AS INTEGER =12;
  19. SELECT dateadd(m,@mes,getdate())
  20.  
  21. //Ultimo día del mes
  22.  
  23. SELECT eomonth(getdate())

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.