1 頁 (共 1 頁)

SQL2000下跨DB的sql語法

發表於 : 週四 2月 16, 2006 4:35 pm
布魯斯
在sql2000下要跨database做select、update、insert的動作時,

選擇不同DB下的table,語法為DB..table

舉例:

select * from DB1..table1,DB2..table2 where ...
insert into DB1..table1 ....
update DB1..table1 set ...