Ayuda con Mysql

pandemia

New Member
Messages
13
Reaction score
0
Points
1
:dunno: Me sale este error al subir una tabla de mysql, y no tengo ni idea de como solucionarlo. Aer si algun experto puede hecharle un ojo

Error

consulta SQL:
INSERT INTO `AdminMenu` ( `ID` , `Title` , `Url` , `Desc` , `Check` , `Order` , `Categ` , `Icon` )
VALUES ( 84, 'Moderator Video Zone', '../youtubes/moderators/videos/videos.php', 'Moderator Panel', '', 4, 9, 'video.jpg' ) , ( 85, 'Youtubes Video Zone', '../youtubes/admin/videos/videos.php', 'Manage Youtubes Video Zone', '', 4, 4, 'video.jpg' ) ,
CREATE TABLE `comments` ( `id` int( 30 ) NOT NULL AUTO_INCREMENT ,
`vidid` int( 20 ) NOT NULL default '0',
`uid` int( 10 ) NOT NULL default '0',
`unick` varchar( 30 ) NOT NULL default '',
`date` varchar( 40 ) NOT NULL default '',
`text` text NOT NULL ,
PRIMARY KEY ( `id` )
) ENGINE = MYISAM DEFAULT CHARSET = latin1 AUTO_INCREMENT =1;


MySQL ha dicho:
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'CREATE TABLE `comments` (
`id` int(30) NOT NULL auto_increment,
`vidid` in' at line 6
 
Last edited by a moderator:

kraqen11

Retired
Messages
994
Reaction score
2
Points
0
una cosa, que script usas?¿
si es uno que viene un install deberias utilizar la instalcion automatica
 

evigra

New Member
Messages
244
Reaction score
3
Points
0
no soy explerto pero esto creo te servira



CREATE TABLE `comments` (
`vidid` INT( 20 ) NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`uid` INT( 10 ) NOT NULL ,
`unick` varchar( 30 ) CHARACTER SET latin1 COLLATE latin1_spanish_ci NOT NULL default '' ,
`date` varchar( 40 ) CHARACTER SET latin1 COLLATE latin1_spanish_ci NOT NULL default '' ,
`text` TEXT CHARACTER SET latin1 COLLATE latin1_spanish_ci NOT NULL

) ENGINE = MYISAM
 

tttony

Member
Messages
147
Reaction score
0
Points
16
no se porque cuando he entrado a este post me sale un cuadro de dialogo pidiendome un usuario y contraseña del cPanel de un sitio llamado: quedeo.elemenfx.net

bueno y a lo del tema intenta lo de evigra
 

alv4

New Member
Messages
321
Reaction score
0
Points
0
Aparece eso del cpanel porque hay una imagen que esta puesta y para podser verla hay q acceder.. y mira lo de evigra
 

TonnyORG

I Code Things
Community Support
Messages
5,907
Reaction score
16
Points
38
ya removi lo que causaba el error de login de cpanel al abrir el tema (por la seguridad del usuario principal) :)
 
Top