Jump to content

MySQL Error - Need assistance!


xtrax

Recommended Posts

Hello everyone.

 

I am new here but need help with a MySQL statment...

 

This is the mySQL table

 

/*Begin Create Clients*/

$query = "CREATE TABLE `".DB_PREFIX."clients` (

`client_id` int(11) NOT NULL auto_increment,

`username` varchar(100) NOT NULL default '',

`password` varchar(100) NOT NULL default '',

`company` varchar(255) default NULL,

`email` varchar(255) NOT NULL default '',

`first_name` varchar(100) default '',

`last_name` varchar(100) default '',

`address` varchar(255) default NULL,

`address_2` varchar(100) default '',

`city` varchar(100) default '',

`state` varchar(100) default '',

`zip` varchar(100) default '',

`client_number` int(11) default '',

`phone_number` varchar(100) default '',

`fax_number` varchar(100) default '',

`ptax` double(10,4) NOT NULL default '0.0725',

`p2tax` double(10,4) NOT NULL default '0.1900',

`gtax` double(10,4) NOT NULL default '0.0725',

PRIMARY KEY  (`client_id`),

UNIQUE KEY `username` (`username`)

) TYPE=MyISAM;";

mysql_query ($query);

 

However mySQL is complaining about the following line

 

MySQL said: 

 

#1067 - Invalid default value for 'client_number'

 

If anyone could help me it would be appreciated....

 

xtrax

Link to comment
https://forums.phpfreaks.com/topic/148327-mysql-error-need-assistance/
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.