我正在制作一个功能。select 语句只返回一行一列,比如一个 int。如何将此 int 存储在声明的变量中,以便我的函数可以返回该变量?
select sum(table_name.col1) -- this line returns only one int. How to store that
--in a declared variable ?
from
(select
col1, col2
--code here
)table_name
我正在制作一个功能。select 语句只返回一行一列,比如一个 int。如何将此 int 存储在声明的变量中,以便我的函数可以返回该变量?
select sum(table_name.col1) -- this line returns only one int. How to store that
--in a declared variable ?
from
(select
col1, col2
--code here
)table_name