CREATE TABLE user (
...
columnName int ARRAY[7][7] DEFAULT null,
...
)
I have to create a table where one of the columns has to store a 7x7 array, but i can't figure it out!
Is it even possible in SQL?
-- UPDATE So, I've decided I am going to cheat it and store it as a TEXT and then with code I'll work with that string