-1
讓我們來定義:SQL使用返回值
create table cities
(
ID int identity,
name varchar(50) unique
)
create function getID (@name varchar(50)) returns int
begin
declare @id int
select @id=ID from cities where [email protected]
return @id
end
create procedure addLine
@cityID int
as begin
...
end
是否有可能執行與函數返回值的過程,如下所示?
exec addLine getID('Warsaw')
exec addLine dbo.getID('Warsaw')
exec addLine (select dbo.getID('Warsaw'))
我上面試過,它沒有幫助。
它不起作用?你使用了一個逐步調試器嗎? – Dai 2015-02-07 22:00:44
老實說,我從來沒有使用它,所以我不知道該怎麼做,我會嘗試找到該選項 – user3162968 2015-02-07 22:04:04