1

我是 SQL Server 的新手,今天我开始编写 SQL 查询。在 SSMS (SQL Server Management Studio) 中为插入语句编写 SQL 查询时,我注意到只有表名正在自动完成,但没有自动完成列名的选项。有没有办法在查询中自动完成列名?

INSERT INTO table_name (column1,column2,column3,...)
/* Here table name is auto completed. When i type a,a related tables were generated, but for columns there is no autocomplete. */
VALUES (value1,value2,value3,...);
4

1 回答 1

4

假设您使用的是大多数人在使用 SQL Server 时使用的 SQL Server Management Studio (SSMS),那么内置的 Intellisense 会为您填充 SQL 查询的某些部分。如果你想要更强大的东西,你可以查看第三方插件。最受欢迎的可能是 Red Gate 的 SQL PromptdbForge 的 SQL Complete

于 2014-08-13T13:11:15.163 回答