Expanding wildcard for @table variables not displaying computed columns
ggeier
Posts: 30 Bronze 2
in SQL Prompt
The expand wildcard feature is not working for @table variables. If I declare a @table with computed columns, then expand the wildcard, only the non-computed columns will be shown. For example:
If I expand the asterisk, it'll show:
declare @t table ( C1 varchar(9) ,C2 as ('a' + C1) ,C3 as ('z') ) select * from @t
If I expand the asterisk, it'll show:
select C1 from @t<br>
All other tables don't have this issue. I am using version: 9.4.8.7733.
Tagged:
Best Answer
-
Tianjiao_Li Posts: 684 Rose Gold 5Thanks for reporting this issue! It's logged as SP-7431 in our internal bug tracking system now. Please keep an eye on the release note!
Answers