Does SQLite support multiple schematas within the same database?

前端 未结 1 1594
没有蜡笔的小新
没有蜡笔的小新 2021-02-07 05:29

If I look at the syntax definition of an ALTER TABLE statement, it seems to indicate that a table name can be prefixed with a schema-name. Does that mean that SQLit

相关标签:
1条回答
  • 2021-02-07 05:56

    In SQLite, a schema name is the name of an attached database.

    So it is not possible to have multiple schemata within the same database.

    0 讨论(0)
提交回复
热议问题