Jump to content

dump from phpmyadmin wont work


Red Squirrel

Recommended Posts

I'm trying to restore a dump from phpmyadmin and this table is giving me issues. why wont this work?

[code]
mysql> CREATE TABLE catalog (
    ->   prod_id bigint(20) NOT NULL default '0',
    ->   name varchar(255) NOT NULL default '',
    ->   price bigint(20) NOT NULL default '0',
    ->   short_desc text NOT NULL,
    ->   desc text NOT NULL,
    ->   picture varchar(128) NOT NULL default '',
    ->   inventory bigint(20) NOT NULL default '0',
    ->   shipping bigint(20) NOT NULL default '0',
    ->   PRIMARY KEY  (prod_id),
    ->   KEY prod_id (prod_id)
    -> ) TYPE=MyISAM;
ERROR 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 'desc text NOT NULL,
  picture varchar(128) NOT NULL default '',
mysql>
[/code]
Link to comment
https://forums.phpfreaks.com/topic/6217-dump-from-phpmyadmin-wont-work/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.