sql - Find the column names of Temp table -
i need find column names of temp table.
if physical table can either use sys.columns
or information_schema.columns
system views find column names.
similarly there way find column names present in temp table?
select * tempdb.sys.columns object_id = object_id('tempdb..#sometemptable');
Comments
Post a Comment