Ver Mensaje Individual
  #3 (permalink)  
Antiguo 03/07/2008, 11:33
rProgged
 
Fecha de Ingreso: agosto-2004
Mensajes: 131
Antigüedad: 19 años, 9 meses
Puntos: 2
Respuesta: Conocer el valor máximo de una columna

Cita:
Iniciado por iislas Ver Mensaje
Consulte su ayuda en linea BOL (books on line).

bigint

Integer (whole number) data from -2^63 (-9,223,372,036,854,775,808) through 2^63-1 (9,223,372,036,854,775,807). Storage size is 8 bytes.

int

Integer (whole number) data from -2^31 (-2,147,483,648) through 2^31 - 1 (2,147,483,647). Storage size is 4 bytes. The SQL-92 synonym for int is integer.

smallint

Integer data from -2^15 (-32,768) through 2^15 - 1 (32,767). Storage size is 2 bytes.

tinyint

Integer data from 0 through 255. Storage size is 1 byte.

Muchas gracias por tu ayuda!!!

La próxima vez prometo consultar los BOL antes de postear pero es que era una urgencia (sql injection ) asi que muchas gracias por la ayuda.

Saludos