Created
December 2, 2013 23:14
-
-
Save bananu7/7760850 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
| --DECLARE @czas TABLE (czasid int) | |
| CREATE TABLE #tempczas (czasid int) | |
| INSERT INTO Czas (id,x) | |
| OUTPUT INSERTED.id INTO #tempczas(czasid) | |
| VALUES (2,5); | |
| declare @czasid int | |
| set @czasid = (select * from #tempczas) | |
| INSERT INTO Sprzedaż (id,czas) | |
| VALUES (1, @czasid); | |
| SELECT * FROM Sprzedaż; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment