0
For example:
If instead of just typing an email address in the variable below, I typed 30 email addresses, which I would have to change in my query below?
DECLARE @email as NVARCHAR
SET @email = '[email protected]'
Select * FROM Padarias WHERE email = @email
I don’t think it’s a good idea to work with multi-valued attributes. Rethink your strategy.
– anonimo
From what I understand https://stackoverflow.com/questions/21160456/sql-server-procedure-declare-a-list
– Motta
Thank you Motta, the solution presented in this link serves my case! A strong.
– Danilo Brito