Ver Mensaje Individual
  #4 (permalink)  
Antiguo 20/07/2006, 13:40
Avatar de Andres95
Andres95
Colaborador
 
Fecha de Ingreso: diciembre-2004
Mensajes: 1.802
Antigüedad: 20 años
Puntos: 38
-- Redondeando
Código:
declare @midato float
set @midato =  ROUND(150.756699, 2, 0)
print @midato
-- Sin Redondear
Código:
declare @midato float
set @midato =  ROUND(150.756699, 2, 1)
print @midato