Show up non-declared variables (i.e. @xyz) in autocomplete suggestions
A user variable (AKA:session variable) not showing in the autocomplete list. Variables defined using the DECLARE syntax show up fine but those created using the "SET @" method do not.
BEGIN
DECLARE v1 INT;
SET @v2 = 1;
SELECT
1
FROM
users AS u
WHERE
END
0
votes
Dazz Knowles
shared this idea