Answers for "how to create enum in postgreSQL"

SQL
0

how to create enum in postgreSQL

CREATE TYPE enum_name AS ENUM('value1', 'value2', 'value3');
Posted by: Guest on March-29-2022
0

create enum postgres

CREATE TYPE mood AS ENUM ('sad', 'ok', 'happy');
Posted by: Guest on January-10-2022

Code answers related to "SQL"

Browse Popular Code Answers by Language