【发布时间】:2013-02-08 18:18:23
【问题描述】:
在 Toad 中输入查询时,它通常会弹出一个智能滚动框来帮助我输入。
但有时这不会出现。是否有捷径(如在 Visual Studio 中)来显示它?
EDIT发现键映射是CTRL+。
对于类似的查询
SELECT * FROM Person AS P
WHERE P. -- I expect intellisense to show me the columns.
-- Sometimes it does not and pressing the CTRL+. does nothing
按 CTRL+。远离查询会带来很长的列表 -
@@CONNECTIONS @@CPU_BUSY @@CURSOR_ROWS @@DATEFIRST @@DBTS @@ERROR
我有正确的快捷键吗?
是不是上面的查询中Toad无法识别出列名的问题?
编辑 2
非常奇怪的行为
如果我有
USE DB1
SELECT * FROM Person AS P
WHERE P.--I get the intellisense
但如果我在编辑器中有以下内容 -
USE DB1
SELECT * FROM Person AS P
WHERE P.--I get the intellisense
USE DB2
SELECT * FROM Company AS C
WHERE C. -- No intellisense
我自己的答案中的解决方案
【问题讨论】:
标签: sql intellisense toad