create type color_t as enum('blue', 'red', 'gary', 'black'); drop table if exists cars; create table cars ( brand text , model text , color color_t ); insert ...
確定! 回上一頁