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 从内存表和数据库表中进行联合 SELECT?
“内存表”是什么意思?
您是否尝试过:
SELECT fields FROM table as alias, (SELECT fields FROM table) as alias2 WHERE alias.field = alias2.field
或相同但使用连接