What's wrong with this
CREATE TABLE `products` (
`item_num` VARCHAR( 255 ) NOT NULL ,
`description` VARCHAR( 255 ) NOT NULL ,
`quantity` TINYTEXT( 255 ) NOT NULL ,
`type` TINYTEXT( 255 ) NOT NULL ,
PRIMARY KEY ( `item_num` )
)
MySQL said:
You have an error in your SQL syntax.
Check the manual that corresponds to your MySQL server version
for the right syntax to use near
'( 255 ) NOT NULL , type TINYTEXT( 255 ) NOT NULL , PR