Reputation: 13328
There's a table with one column - MyTable(ID)
, where ID
is primary key with identity(1,1)
. How to insert one row into this table by stored procedure?
CREATE PROC MyProc
AS
INSERT INTO [dbo].[MyTable] VALUES()
Upvotes: 0
Views: 82