Such as
INSERT INTO database1.tb1 (field1, field2)
SELECT field1, field2 FROM database2.tb1
I could do the above query between two mysql database, if I use the same user and password to access these two mysql database.
Could I do it if database1 is sqlite3 database, database2 is mysql database?
Thanks!