Ver Mensaje Individual
  #1 (permalink)  
Antiguo 24/01/2011, 13:12
Avatar de bandolera
bandolera
 
Fecha de Ingreso: abril-2009
Mensajes: 613
Antigüedad: 15 años, 7 meses
Puntos: 7
Pregunta Warning: #1264 Out of range value

Acabo de crear una tabla:

Código PHP:
CREATE TABLE IF NOT EXISTS `anexos` (
  `
idanxint(11NOT NULL AUTO_INCREMENT,
  `
rucint(11unsigned NOT NULL,
  `
rsocialvarchar(60NOT NULL,
  
PRIMARY KEY (`idanx`),
  
KEY `ruc` (`ruc`)
ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=
Inserté dos registros:
Código PHP:
INSERT INTO `kdata`.`anexos` (`idanx`, `ruc`, `rsocial`)
VALUES (NULL'12345678901''COMERCIAL LOS ANDES DEL MUNDO Y DE AMERICA LATINA SAC'),
       (
NULL'11223344550''REPRESENTACIONES IMPORTACIONES HIRAOKA'); 
Y me sale este mensaje:
Código HTML:
2 filas(s) fueron insertadas.
La Id de la fila insertada es: 2
Warning: #1264 Out of range value for column 'ruc' at row 1
Warning: #1264 Out of range value for column 'ruc' at row 2
Y al ver la tabla veo que el campo ruc tiene los mismos valores:
Código HTML:
(1, 4294967295, 'COMERCIAL LOS ANDES DEL MUNDO Y DE AMERICA LATINA SAC'),
(2, 4294967295, 'REPRESENTACIONES IMPORTACIONES HIRAOKA');
Cuál es el problema?
Gracias.