Acabo de crear una tabla:
Código PHP:
CREATE TABLE IF NOT EXISTS `anexos` (
`idanx` int(11) NOT NULL AUTO_INCREMENT,
`ruc` int(11) unsigned NOT NULL,
`rsocial` varchar(60) NOT NULL,
PRIMARY KEY (`idanx`),
KEY `ruc` (`ruc`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
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.