Is there a way to get the list of columns of a temporary table in sybase? suppose I have a table called #mytable
select count (*) from tempdb..#mytable
return 145 to say there are 145 rows in this table. I tried the following (with a few variation)
select so.name from tempdb..syscolumns sc inner join tempdb..sysobjects so on sc.id = so.id where so.name = '#mytable'
also tried
select so.name from tempdb..syscolumns sc inner join tempdb..sysobjects so on sc.id = so.id where so.name = 'tempdb..#mytable'
both came back with empty result.
any ideas? any other primitives to get the column names of a temp table in sybase?
SELECT name FROM tempdb..syscolumns WHERE id = OBJECT_ID('tempdb..#mytable')as the OP said "it returns nothing on Sybase" – Martin Smith May 9 '11 at 21:46