Saving string-tables in global database

Hey, is it possible to store this type of table:

local x = {
 ["Idk"] = {
     ["something"] = 2
 },
 ["Idk2"] = {
     ["something2"] = 2
 }
}

in the global databse?

If it is the Roblox database, of course you can, if it is another database it will depend on its limitations, if the database only accepts string, you can format the table to JSON.

If this solved your problem, please mark it as a solutio.

Yes it is, thank you very much for informing me! :smiley: