Include Schema
Can database schema be included (optionally) in the intellisense object name selection? e.g. [dbo].[tablename] ?
(the square brackets also being optional)
11
votes
Spaceman
shared this idea
Version 3.0 is on the site
-
DaveC commented
To build upon this suggestion, if I do
SELECT FROM tbl_Name
then do ctrl+space after SELECT to list the column titles, when selecting the column title, I get
SELECT
tbl_Name.ColumnName
FROM
tbl_NameWhere there is no table join, can SQLComplete simply use the column name without preceeding table name?
-
Arthur commented
It is highly advisable to always include schema in your queries!