Jump to content

Auto column & defining key help


circpros

Recommended Posts

I'm trying to create a table from a forum modification with this command:

 

CREATE TABLE `phpbb_ina_cat` ( 
                    `cat_id` mediumint(8) NOT NULL auto_increment, 
                    `mod_id` mediumint(8) default NULL, 
                    `cat_name` varchar(100) default NULL, 
                    `cat_desc` text, 
                    `icon` varchar(255) default NULL, 
                    `special_play` smallint(5) NOT NULL default '0', 
                    `last_game` varchar(25) default NULL, 
                    `last_player` mediumint(8) default NULL, 
                    `last_time` int(11) default NULL ); 

 

And it gives me this error:

 

#1075 - Incorrect table definition; There can only be one auto column and it must be defined as a key

 

I'm new to using mysql, and I'm not certain how to define the key. I'm also not seeing where I am defininf multiple auto colums.

 

I'm hoping someone more experienced than I can point out the problem for me.... Thanks in advance.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.