If a stored procedure is taking a table data type, how it looks?
Answer Posted / yagnik rohit
declare @temptable table(col1 int,col2 int)
insert into @temptable select 1,2
select * from @temptable
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What are window functions in sql server?
What do you mean by an execution plan?
Explain about analysis services?
Is it possible for a stored procedure to call itself or recursive stored procedure? How many levels of sp nesting are possible?
How do I partition a table in sql server?
What is the maximum size per database for sql server express?
Will count(column) include columns with null values in its count?
How to handle error or exception in sql?
Explain about SQLOS?
What is a mutating table error and how can you get around it?
What are secondary xml indexes?
How to Insert multiple rows with a single insert statement?
What do you understand by integration services in sql server?
How do we synchronize On-Premise SQL server with SQL Azure?
Explain the types of indexes.