array of enums
を挿入するにはどうすればよいですか?ここで
は私enum
です:PostgreSQL列挙型の配列への挿入
CREATE TYPE equipment AS ENUM ('projector','PAsystem','safe','PC','phone');
その後、私のテーブルには、設備の配列を持っています。ここ
CREATE TABLE lecture_room (
id INTEGER DEFAULT NEXTVAL('lecture_id_seq')
, seatCount int
, equipment equipment[]
) INHERITS(venue);
挿入する私の試みです:
INSERT INTO lecture_room (building_code, floorNo, roomNo, length, width
, seatCount, equipment)
VALUES
('IT', 4, 2, 10, 15 ,120, ARRAY['projector','PAsystem','safe']),
をしかし、それは私に次のようになりますエラー:
ERROR: column "equipment" is of type equipment[] but expression is of type text[] SQL state: 42804 Hint: You will need to rewrite or cast the expression.