0

How Can I use insert into/Select from one Database table to another Database table. for more explanation I have one Data base with "UserDB" name and "UserTble" table and another-one with "WordDB" and "WordsTble" Table name.

Suraj Makhija
  • 1,376
  • 8
  • 16

1 Answers1

0

As they are separated databases, you can't do it using only SQL.

You must make a query from source table, read sequentially all results from the query and insert each record in the target table.