
Error al subir base de Datos en phpMyadmin
Publicado por carlos jose taveras (6 intervenciones) el 07/08/2014 15:30:17
cuado intento subir esta tabla atraves de phpmyadmin me da un error...
ejemplo de la tabla.
# Table structure for table `million_admin`
#
CREATE TABLE `million_admin` (
`id` int(5) NOT NULL default '0',
`username` varchar(100) NOT NULL default '',
`password` varchar(50) NOT NULL default '',
`email` varchar(100) NOT NULL default ''
) TYPE=MyISAM;
#
# Dumping data for table `million_admin`
#
INSERT INTO `million_admin` VALUES (1, 'admin', 'pass', '[email protected]');
Y este es el error que me tira...
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'TYPE=MyISAM' at line 9
ejemplo de la tabla.
# Table structure for table `million_admin`
#
CREATE TABLE `million_admin` (
`id` int(5) NOT NULL default '0',
`username` varchar(100) NOT NULL default '',
`password` varchar(50) NOT NULL default '',
`email` varchar(100) NOT NULL default ''
) TYPE=MyISAM;
#
# Dumping data for table `million_admin`
#
INSERT INTO `million_admin` VALUES (1, 'admin', 'pass', '[email protected]');
Y este es el error que me tira...
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'TYPE=MyISAM' at line 9
Valora esta pregunta


0