Does SQLite support multiple schemas in the same database?

If I look at the syntax definition of an ALTER TABLE statement , it looks like the table name may have a prefix with schema-name . Does this mean that SQLite supports schemas (as SQL Server does)? Or is it a schema-name referring to another database (similar to MySQL)?

+7
sqlite
source share
1 answer

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

Thus, it is not possible to have multiple schemas within the same database.

+9
source share

All Articles