Posts by Luiz Godoy • 1 point
1 post
-
-1
votes4
answers15280
viewsA: Can you create an array in SQL Server?
The best I found for today’s need: DECLARE @myTableVariable TABLE (id INT, name varchar(20)) insert into @myTableVariable values(1,'Roberto'),(2,'Gail'),(3,'Dylan') select * from @myTableVariable…
sql-serveranswered Luiz Godoy 1