MySQL Forums
Forum List  »  Newbie

Re: Can I do this with create table?
Posted by: Shantanu Oak
Date: March 30, 2005 06:15PM

You have to use backtick ` (sign before number 1 on the keyboard)
for e.g.
create table privilege
(
`username` varchar(50) not null,
`modify.php` enum('y', 'n'),
`delete.php` enum('y', 'n'),
`add.php` enum('y', 'n'),
`operation.php` enum('y', 'n'),
`query.php` enum('y', 'n'),
`addoperation.php` enum('y', 'n'),
`moddel.php` enum('y', 'n'),
primary key (`username`)
);

Options: ReplyQuote


Subject
Written By
Posted
Re: Can I do this with create table?
March 30, 2005 06:15PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.