PostgreSQL table describe output, what does it mean? -
so output when table describe on postgresql table.
2, module, varchar, -1, 68, t
i'm guessing 2 column number, "module" column name, varchar datatype, 68 length, t nullable.
is correct , -1 signify?
thanks
-1 "typmod" (type modifier). types, -1 means default or unspecified. varchar, specifically, -1 means unlimited length.
Comments
Post a Comment