So I am working in postgreSQL and I want to create a table and in one column of this table I want to have multiple values as booleans. For example:
create table if not exists x(
Numx numeric(5) PRIMARY KEY,
method (here for example I want method to be able to be something like this "method {a,b,c,d}"
);
So method could have either value a or b or a,b etc.
How am I able to do so?
Thanks in advance