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.
在 android 应用程序中,我们使用多个数据库 (Sqlite)。我们需要对来自不同数据库的两个不同表使用连接查询。有人可以对此有所了解吗?如果是,那么您可以发送示例查询以连接来自不同数据库的两个表吗?
谢谢克里希纳
attach database 'databaseObj1.db' as dbObj1; attach database 'databaseObj2.db' as dbObj2; select * from dbObj1.Table1 a inner join dbObj2.Table2 b on b.Column = a.Column;