khaaliq Posted January 28, 2003 Share Posted January 28, 2003 Could someone give me a hand with this? I get syntax errors when I insert it into phpmyadmin. CREATE TABLE products_groups( customers_group_id (int) 11, customers_group_price (decimal) 15, 4, products_id (int) 11, products_price (decimal) 15,4, ) TYPE=MyISAM Thanks Link to comment Share on other sites More sharing options...
mugitty Posted January 28, 2003 Share Posted January 28, 2003 I'd start by trying a semi-colon (;) after MyISAM... ... if you want to REALLY see something that doesn't set up right out of the box without some tweaking, try being a Foster Parent! Link to comment Share on other sites More sharing options...
khaaliq Posted January 28, 2003 Author Share Posted January 28, 2003 thats not it, still get errors Link to comment Share on other sites More sharing options...
mugitty Posted January 28, 2003 Share Posted January 28, 2003 Which contribution is this for? ... if you want to REALLY see something that doesn't set up right out of the box without some tweaking, try being a Foster Parent! Link to comment Share on other sites More sharing options...
mugitty Posted January 28, 2003 Share Posted January 28, 2003 Richard; Try it this way... CREATE TABLE products_groups( customers_group_id int( 11 ) , customers_group_price decimal( 15, 4 ) , products_id int( 11 ) , products_price decimal( 15, 4 ) ) TYPE = MyISAM; ... if you want to REALLY see something that doesn't set up right out of the box without some tweaking, try being a Foster Parent! Link to comment Share on other sites More sharing options...
khaaliq Posted January 28, 2003 Author Share Posted January 28, 2003 Seperate pricing per customer 3.3 Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.