Re: sets and enums
"Bill Angus" <[email protected]>
| Newsgroups | gmane.comp.db.mysql.windows |
|---|---|
| Message-ID | <001b01c62a69$172485c0$0201a8c0@billhome> |
Thank you Vic. I didn't know where to put the 'ON','OFF' part -- and couldn't find the info in the docs. Your info much appreciated. Bill Angus, MA http://www.psychtest.com ----- Original Message ----- From: Vic Spainhower To: 'Bill Angus' ; [email protected] Sent: Saturday, February 04, 2006 4:06 PM Subject: RE: sets and enums Bill, I just added ENUM('ON','OFF') to the data type when I created the table. I did not receive an error. If you didn't enter the values At the time you created the field, then that is probably why you got the error. Here's the SQL that was created: ALTER TABLE `myDatabase`.`tblTest` MODIFY COLUMN `id` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT, ADD COLUMN `enumColumn` ENUM('ON','OFF') NOT NULL DEFAULT 'OFF' AFTER `id` , COMMENT = 'Test Table'; Hope this helps! Vic -----Original Message----- From: Bill Angus [mailto:[email protected]] Sent: Saturday, February 04, 2006 11:19 AM To: [email protected] Subject: sets and enums Anybody know how to set-up a set or an enum type in MySQL using the MySQL Administrator? I entered field-type ENUM but that was as far as I got, because the Administrator returns an error when I click update. Need to know where to put the lookup table for the enum type as well. Thanks in advance... and Have a great day! Bill Angus, MA http://www.psychtest.com -- MySQL Windows Mailing List For list archives: http://lists.mysql.com/win32 To unsubscribe: http://lists.mysql.com/[email protected]