我是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,...);
答案 0 :(得分:4)
假设您正在使用SQL Server Management Studio(SSMS),这是人们在使用SQL Server时使用的最常用的,那么内置的Intellisense中存在较弱的内容,它将为您填写SQL查询的某些部分。如果你想要更强大的东西,你可以查看第三方插件。最受欢迎的可能是SQL Prompt by Red Gate和SQL Complete by dbForge。