Is there an SQLite equivalent to MySQL's DESCRIBE [table]? -
i'm getting started learning sqlite. nice able see details table, mysql's describe [table]
. pragma table_info [table]
isn't enough, has basic information (for example, doesn't show if column field of sort or not). sqlite have way this?
the sqlite command line utility has .schema tablename
command shows create statements.
Comments
Post a Comment