Search code examples
sqlitedb-browser-sqlite

Can I add a note to the SQLite table design using DB Browser for SQLite?


Is there a possibility to add notes in DB Browser for SQLite to annotate the table?


Solution

  • DB Browser for SQLite does not preserve comments used in a CREATE TABLE statement. As @Shawn commented, you can use comments in CREATE TABLE from command line sqlite3. This (old) post gives example.