0

id''を取り、' 'を返すストアドプロシージャがある場合age。その名前がでgetAge あり、このストアドプロシージャを使用して年齢を取得したい場合、id

私がこのようなクエリを持っている場合:

select id, age where age > ( getAge id)

どうやってするか ?

4

1 に答える 1

0

SQL Server を使用していると仮定して

Declare @t table(age int)
insert into @t
EXEC procedure_name

select id, age where age > (select age from @t) 
于 2012-07-18T08:16:59.060 に答える