本文介绍了在不同的数据库上连接两个表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有以下数据库:


  1. test

table1
  fields: id, password, name, lastname


  • test2

    table2
      fields: id
    



  • $ b b

    如何选择 test test2 其中 table1 in test2.table2.id

    推荐答案

    你尝试过吗?你只需要写数据库名称 test2.dbo.tblFoo ,虽然你可能需要声明一个别名(只写一个字后写实际名称)。该帐户显然需要对这两个数据库的权限。

    Have you tried it? You just write the database name test2.dbo.tblFoo, though you may need to declare an alias (just write a word after writing the actual name). And the account will obviously need permissions to both DBs.

    这篇关于在不同的数据库上连接两个表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

    09-06 03:20