Posts by Jaderson Linhares • 66 points
1 post
-
5
votes5
answers25936
viewsA: How to pass a list of values to a Stored Procedure?
You can pass tables as parameters. First create the TABLE TYPE: CREATE TYPE IntegerTableType AS TABLE (Id INT) When creating the past, you can use this pattern: CREATE PROCEDURE pr_lista_produtos…