Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在新工作场所解释一些 SQL 查询。..此处显示的查询中的点点是什么意思?
..
SELECT AAAA FROM RMPROD..LDC_ACCOUNT
谢谢
RMPROD- 是您的数据库名称 LDC_ACCOUNT- 是您的表名
RMPROD
LDC_ACCOUNT
缺什么?缺少架构名称,这意味着 SQL Server 将尝试在您的默认架构中查找您的表。
默认架构通常是dbo.
dbo
如果它是正确的,你的查询意味着
SELECT * FROM RMPROD.dbo.LDC_ACCOUNT