能否查询得到全局临时表的所有列名?如题。能否得到全局临时表的所有列名?如:
select * from syscolumns where id=object_id(N'Tempdb.dbo.##0123') and ( xtype=62 or xtype=106 )
select * from tempdb.dbo.syscolumns where id=object_id('tempdb.dbo.##tb')