[feature request] Add 'N' to unicode type literal strings
ogrishman
Posts: 81 Bronze 4
Hi,
Is it possible to format below code
to
Thanks.
Is it possible to format below code
DECLARE @a VARCHAR(200); SELECT @a = 'asdf'; DECLARE @b NVARCHAR(200); SELECT @b = 'asdf';
to
DECLARE @a VARCHAR(200); SELECT @a = 'asdf'; DECLARE @b NVARCHAR(200); SELECT @b = N'asdf';
Thanks.
Comments
This sounds like a cool idea!
We're using UserVoice to track feature requests like this as it helps us track the requests and lets other users vote on it (helping us prioritize which features to work on next).
It'd be great if you could add any requests to our UserVoice to increase their visibility.
Thanks,
Aaron.
Also doesn't work for insert and updates.