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 'group'.

Problem: Access to the table 'group' i.e. by using SELECT * FROM group; will
cause problems.

Solution: Mysql should prevent the creation of this table!

(It will be hard to remove your just created table, but I found out you can
do it by typping: DROP TABLE somedb.group;)


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to