Created
March 25, 2015 18:10
-
-
Save icalderond/174949e41a803855fec4 to your computer and use it in GitHub Desktop.
Lista temporal SQL Server
This file contains 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
--For SQL Server 2012: | |
DECLARE @ListofIDs TABLE(IDs VARCHAR(100)); | |
INSERT INTO @ListofIDs | |
VALUES('a'),('10'),('20'),('c'),('30'),('d'); | |
SELECT IDs FROM @ListofIDs; | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment