How can I insert an array of enums? Here is my enum:
array of enums
enum
CREATE TYPE equipment AS ENUM (\'projector\',\'PAsystem\',\'safe\',\'PC\',\'ph
Additionally to @harm answer, you can skip quotations marks:
INSERT INTO lecture_room (equipment) VALUES ('{projector, safe}');