Sure,
Here is what I am getting if I export a table to a script:
drop table if exists `test1`;
CREATE TABLE `test1` (
`col1` int(11) NOT NULL auto_increment,
`col2` int(11) NOT NULL default '0',
PRIMARY KEY (`col1`),
KEY `col2` (`col2`)
) TYPE=ISAM;
This is fine if I import it to my test machine (MySQL4). However in Prod we still have MySQL3 and it does not seem to like the '' around the field names.
I go in and manually edit the script now, but was wondering if there was a seeting somewhere to turn it off when the script is generated.
Thanks.
Chris