Gossamer Forum
Home : General : Databases and SQL :

Whats wrong with this syntax?

Quote Reply
Whats wrong with this syntax?
Can anyone see anything that is out of place or wrong in the code?

CREATE TABLE PayPal_Affiliates (
UniqueID int(11) NOT NULL auto_increment,
Password text NOT NULL,
Name text NOT NULL,
PayPal_Account text NOT NULL,
WebSite text NOT NULL,
WebSite_Title text NOT NULL,
isValidated text NOT NULL,
Jan int(11) NOT NULL default '0',
Feb int(11) NOT NULL default '0',
Mar int(11) NOT NULL default '0',
Apr int(11) NOT NULL default '0',
May int(11) NOT NULL default '0',
June int(11) NOT NULL default '0',
July int(11) NOT NULL default '0',
Aug int(11) NOT NULL default '0',
Sept int(11) NOT NULL default '0',
Oct int(11) NOT NULL default '0',
Nov int(11) NOT NULL default '0',
Dec int(11) NOT NULL default '0',
Total_Owed int(11) NOT NULL default '0',
UNIQUE KEY UniqueID (UniqueID)
) TYPE=MyISAM;


I'm getting;

MySQL said: You have an error in your SQL syntax near 'Dec int(11) NOT NULL default '0', Total_Owed int(11) NOT NULL default '0', UNI' at line 1.

Query: CREATE TABLE PayPal_Affiliates ( UniqueID int(11) NOT NULL auto_increment, Password text NOT NULL, Name text NOT NULL, PayPal_Account text NOT NULL, WebSite text NOT NULL, WebSite_Title text NOT NULL, isValidated text NOT NULL, Jan int(11) NOT NULL default '0', Feb int(11) NOT NULL default '0', Mar int(11) NOT NULL default '0', Apr int(11) NOT NULL default '0', May int(11) NOT NULL default '0', June int(11) NOT NULL default '0', July int(11) NOT NULL default '0', Aug int(11) NOT NULL default '0', Sept int(11) NOT NULL default '0', Oct int(11) NOT NULL default '0', Nov int(11) NOT NULL default '0', Dec int(11) NOT NULL default '0', Total_Owed int(11) NOT NULL default '0', UNIQUE KEY UniqueID (UniqueID) ) TYPE=MyISAM


Anyone got any ideas?

Thanks

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Subject Author Views Date
Thread Whats wrong with this syntax? Andy 5361 Jul 2, 2002, 6:40 AM
Thread Re: [Andy] Whats wrong with this syntax?
Wil 5127 Jul 2, 2002, 6:44 AM
Thread Re: [Wil] Whats wrong with this syntax?
Andy 5182 Jul 2, 2002, 6:46 AM
Post Re: [Andy] Whats wrong with this syntax?
Stealth 5053 Jul 2, 2002, 11:05 AM