Copy (or USE) data from two tables in different databases
Posted
by Z77
on Stack Overflow
See other posts from Stack Overflow
or by Z77
Published on 2010-05-17T10:31:14Z
Indexed on
2010/05/17
10:40 UTC
Read the original article
Hit count: 134
postgresql
I don-t know how to use one table from one database and second table from another databse at the same time or copy data from table in one database to table from another databse. I tried following query:
select * into NewTable from existingdb.dbo.existingTable;
But it doesnt't work.
© Stack Overflow or respective owner