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

Popular posts from this blog

jQuery clickable div with working mailto link inside -

java - Getting corefrences with Standard corenlp package -

WPF: binding viewmodel property of type DateTime to Calendar inside ItemsControl -