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 is sql server locking?
How to Update from select query in sql server?
How and why use sql server?
What are some examples of schemas?
Why do we use non clustered index?
tell me what is blocking and how would you troubleshoot it? : Sql server database administration
What are the methods used to protect against sql injection attack?
how to do partition in sqlserver
What are user-defined functions (udfs) in sql server?
What is self join in sql server joins?
Is there any performance difference between if exists (select null from table) and if exists (select 1 from table)?
What is the difference between stored procedure and functions?
How to link tables in sql server?
What is normalization of database?
Define self join in sql server joins?