Posts
Sort by recent activity
NULL missing in list candidates
In this situation:
DECLARE @A int
SET @A = NULL
If I press completion key Intellisense shows NULLIF() instead of NULL.
There is no NULL in list candidates and I do not know how to add it except as ...
completion key to not activate if the whole command is typed
I would like to deactivate completion keys in cases when I type the whole command.
Is there such option in configuration?
For example when I type WHERE and then I have to hit TAB twice. First TAB c...
foreign key not recognized inside function
the following code:SELECT *
FROM Document.Status S
INNER JOIN Document.StatusType ST ON <<cursor here>>
and I can see foreign key in list candidates
but if I write the same inside function like thi...
BEGIN/END prevent Candidate List to show columns
In a new query window I write the following code:IF EXISTS (SELECT * FROM Table1 WHERE <<cursor here>>)
Intellisense shows me list candidates and especially columns for Table1.
If I start with Begi...