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
How do I install only the client tools of sql server 2000?
Can a trigger be created on a view?
Is sql server 2016 free?
Is it possible for a stored procedure to call itself or recursive stored procedure? How many levels of sp nesting are possible?
Why use stored procedures in sql server?
can a database be shrunk with users active? : Sql server administration
How to round a numeric value to a specific precision?
What are the difference between primary key and unique key? : sql server database administration
Explain alternate key, candidate key and composite key in sql server?
How do I schedule a sql server profiler trace?
What is default constraint in ms sql server?
please differentiate between delete and truncate?
How to remove duplicate rows from table except one?
What is a raid and what are different types of raid configurations?
How to create a Master database in SQL server ?