MySQL Error Number 1064 -


#1064 - have error in sql syntax; check manual corresponds mysql server version right syntax use near 'create table if not exists etl_users_banned ( id mediumint(5) not null aut' @ line 14

how fix this?

here's code

create table if not exists `etl_users_banned` (   `id` mediumint(5) not null auto_increment,   `user_id` mediumint(9) not null default '0',   `active` tinyint(1) not null default '0',   `protection` tinyint(1) not null default '0',   primary key (`id`) ) engine = myisam default charset=latin1 auto_increment=58 ; 


Comments

Popular posts from this blog

Android layout hidden on keyboard show -

google app engine - 403 Forbidden POST - Flask WTForms -

c - Why would PK11_GenerateRandom() return an error -8023? -