Best unofficial Apache Server developers community |
|
I have a table schema as follows:
I have found that enum Table can be created as: Create Table Status{ status enum ('good','bad','high','low') }; My question: Do i need to create a column for a table Status? How can i refer it in other table while creating a table schema?
posted via StackOverflow
|
|
 
|
You don't need a table for status. You declare a status enum column in your image table. Like so:
|