InterviewSolution
Saved Bookmarks
| 1. |
What Are Enums Used For In Mysql? |
|
Answer» You can limit the possible values that go into the table. CREATE TABLE MONTHS (month ENUM ‘January’, ‘FEBRUARY’, ‘March’,…); INSERT months VALUES (’APRIL’); You can limit the possible values that go into the table. CREATE TABLE months (month ENUM ‘January’, ‘February’, ‘March’,…); INSERT months VALUES (’April’); |
|