Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
AskSQLTeam
Ask SQLTeam Question
0 Posts |
Posted - 2003-02-21 : 06:37:30
|
| venu writes "I have one stored procedure it return the some rows.How i know the coulmn names for those rows in by using query?" |
|
|
ojn.
Starting Member
10 Posts |
Posted - 2003-02-21 : 13:24:50
|
| There isn't a query that would do this for you. Consider this little sproc, what would you expect to get as the column names...e.g.create proc _usp@i intasif @i=1exec('select 1 as i')if @i=3select * from northwind..ordersif @i=99select current_timestampgo---ojwww.rac4sql.net |
 |
|
|
|
|
|