If a stored procedure is taking a table data type, how it looks?
Answer / 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 |
What is sql server locking?
Explain linked server in sql?
Explain what are the database objects? : SQL Server Architecture
What is database white box testing?
please can anyone answer this query Table 1 has 2 columns: EmployeeId,Age Table 2 has 2 columns: EmployeeId, Region Write SQL to Find the region who has the oldest person
Can foreign key be duplicate?
What is the difference between index seek vs. Index scan?
Does full backup break log chain?
What is extended stored procedures?
What is the purpose of sql profiler in sql server? : sql server database administration
What is Inner Join?
What are “lock” hints?