在MySQL中, ENUM的正确用法是什么?( )
Create table size (ENUM ('Small','Medium','Large'));
Create table ENUM (name ('Small','Medium','Large'));
Create table size (name: ENUM['Small','Medium','Large']);
Create table size (name ENUM('Small','Medium','Large'));
在MySQL中, ENUM的正确用法是什么?( )
Create table size (ENUM ('Small','Medium','Large'));
Create table ENUM (name ('Small','Medium','Large'));
Create table size (name: ENUM['Small','Medium','Large']);
Create table size (name ENUM('Small','Medium','Large'));