The schema for TEMPORARY tables is not stored in the "sqlite_master" table since TEMPORARY tables are not visible to applications other than the application that created the table. The schema for TEMPORARY tables is stored in another special table named "sqlite_temp_master". The "sqlite_temp_master" table is temporary itself.
sqlite/Temp table/TRIGGER
最新推荐文章于 2024-03-25 16:59:18 发布
SQLite 的临时表不存储在 'sqlite_master' 表中,而是存储在另一个特殊的临时表 'sqlite_temp_master' 中。这个 'sqlite_temp_master' 表本身也是临时的,仅对创建它的应用程序可见。
摘要由CSDN通过智能技术生成