Sorry, the font makes it appear that way. Those are single quotes...as in:
'1', ' ', 0.00, ' ', 'tax2'
there is a space there, it just doesnt look like it. I am running mysql 5.0
here is the full statement:
CREATE TABLE `tbl_tax` (
`taxid` bigint(50) NOT NULL auto_increment,
`taxdesc1` varchar(100) NOT NULL,
`taxper1` float(8,2) NOT NULL,
`taxst1` enum('0','1') NOT NULL default '0',
`taxdesc2` varchar(100) NOT NULL,
`taxper2` float(8,2) NOT NULL,
`taxst2` enum('0','1') NOT NULL default '0',
`taxdesc3` varchar(100) NOT NULL,
`taxper3` float(8,2) NOT NULL,
`taxst3` enum('0','1') NOT NULL default '0',
`taxdesc4` varchar(100) NOT NULL,
`taxamt1` float(8,2) NOT NULL,
`taxst4` enum('0','1') NOT NULL default '0',
`taxdesc5` varchar(100) NOT NULL,
`taxamt2` float(8,2) NOT NULL,
`taxst5` enum('0','1') NOT NULL default '0',
`tax_prt_id` int(50) NOT NULL,
PRIMARY KEY (`taxid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
--
-- Dumping data for table `tbl_tax`
--
INSERT INTO `tbl_tax` (`taxid`, `taxdesc1`, `taxper1`, `taxst1`, `taxdesc2`, `taxper2`, `taxst2`, `taxdesc3`, `taxper3`, `taxst3`, `taxdesc4`, `taxamt1`, `taxst4`, `taxdesc5`, `taxamt2`, `taxst5`, `tax_prt_id`) VALUES
(1, 'tax1', 0.00, '1', '', 0.00, '', 'tax2', 0.00, '', 'tax4', 0.00, '1', '', 0.00, '', 26),
(2, 'taxa', 2.00, '1', 'taxb', 2.00, '1', 'taxc', 2.00, '1', 'taxd', 23.00, '1', 'taxE', 2.00, '1', 52);
Does this look correct? The reason I am not understanding what the issue is, is that this file was created via mysqldump...this table did at one point run properly from a db, but once i try and load this dump file back into a db im getting this issue.