Is it possible to extract columns from two different database in sqlite3?
My problem is, I have two tables in two different database and I want to retrieve columns from tables from these two database.
To make it more clear, here is my pseudocode.
"SELECT Table_FromFirstDatabase.product
FROM MyFirstDatabase.Table_FromFirstDatabase
WHERE product NOT IN ('SELECT Table_FromSecondDatabase.product
FROM MySecondDatabase.Table_FromSecondDatabase');"
Is it possible to do something like this in sqlite3 ??
Thank you....