I'm new to the game and am wondering if it's possible to store the following object in one column in an SQL database like postgres:
{
"foo1": ["bar1", "bar2"],
"foo2": ["bar1", "bar2", "bar3"],
"foo3": ["bar1", "bar2"]
}
// Idea is to store a list of values in each foo.
I'm sure I have the syntax incorrect, too; any help is appreciated. Thanks.