Created
February 26, 2015 10:33
-
-
Save eternaltung/9d318986630b5d27a385 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE PROCEDURE [dbo].[sp_Test2] | |
| @table1_Id INT OUTPUT | |
| AS | |
| print 'sp_Test2:insert' | |
| insert into testTable1 values('col1') | |
| select @table1_Id = @@IDENTITY |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment