IT Placement Papers Database MYSQL
This category contains MYSQL Interview Questions and Answers |
What are ENUMs used for in MySQL?
|
|
|
|
|
You can limit the possible values that go into the table. CREATE TABLE months (month ENUM ‘January’, ‘February’, ‘March’,…); INSERT months VALUES (’April’);
Only registered users can write comments. Please login or register.
|