我使用以下 t-sql 代码为变量分配从 select 语句中获得的值
DECLARE @cfMitt nvarchar(16)
SET @cfMitt = (SELECT CfMittente
FROM Messaggi
WHERE IDMessaggio = @IDMessaggio)
如果我想使用多个分配,我尝试使用以下代码,但有问题:
DECLARE @cfMitt nvarchar(16)
DECLARE @cfDest nvarchar(16)
SET @cfMitt, @cfDest= (SELECT CfMittente, CfDestinatario
FROM Messaggi
WHERE IDMessaggio = @IDMessaggio)
错误在哪里?