Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
似乎 sqlite 不允许我在只读数据库中创建临时视图。我错过了什么吗?如果是临时的,我认为数据库连接模式应该无关紧要。
我什至指定了“PRAGMA temp_store = MEMORY”——它没有帮助。
是否有合理的替代使用视图?
您可以创建一个临时视图来引用主数据库中的数据。
CREATE VIEW temp.userview AS select userid, firstname, lastname from main.usertbl;
然后像这样访问视图......
SELECT * from temp.userview;