#
# Structure for the `groups` table :
#
CREATE TABLE `groups` (
`gid` tinyint( 4 ) NOT NULL AUTO_INCREMENT ,
`gname` varchar( 50 ) default NULL ,
PRIMARY KEY ( `gid` )
) ENGINE = MYISAM AUTO_INCREMENT =16 DEFAULT CHARSET = utf8;
Answer <span style="border-bottom: 1px dotted black;">MySQL</span>: Documentation
#1046 - No database selected