I have created a stored procedure for insert
CREATE PROCEDURE dbo.insert_samp le(@Name varchar(50),@Ag e char(4),@City varchar(50))
AS
INSERT dbo.Test1 VALUES(@Name,@A ge,@City)
I want to create an HashTable, and insert Hashtable values to table......
waiting for answers
CREATE PROCEDURE dbo.insert_samp le(@Name varchar(50),@Ag e char(4),@City varchar(50))
AS
INSERT dbo.Test1 VALUES(@Name,@A ge,@City)
I want to create an HashTable, and insert Hashtable values to table......
waiting for answers
Comment