creation of table named 'group' should be prevented

2002-11-21 Thread J.C. Kleinhout
Hi, if you use the following command in mysql: CREATE TABLE somedb.group(mip INT (8) UNSIGNED DEFAULT '0' NOT NULL AUTO_INCREMENT, name CHAR (255), PRIMARY KEY(mip), UNIQUE(mip), INDEX(mip)) Where somedb is the database name and group was the intended group, you can create a table called

re: creation of table named 'group' should be prevented

2002-11-21 Thread Egor Egorov
J.C., Thursday, November 21, 2002, 10:20:06 AM, you wrote: JCK if you use the following command in mysql: JCK CREATE TABLE somedb.group(mip INT (8) UNSIGNED DEFAULT '0' NOT NULL JCK AUTO_INCREMENT, name CHAR (255), PRIMARY KEY(mip), UNIQUE(mip), INDEX(mip)) JCK Where somedb is the database name