sql server 创建内联表值函数

表值函数就是返回table 的函数使用它可以方便的进行查询的处理

创建的代码如下:

create FUNCTION returunclassfirstlist

 -- Add the parameters for the function here
 
)
RETURNS TABLE
AS
RETURN
(
 -- Add the SELECT statement with parameter references here
 select * from classfirst;
)

我们在使用创建的函数的时候如下:

select * from returunclassfirstlist();
select * from returunclassfirstlist() where CONVERT(int,classid)<300;

注意 第二个 sql 就是说对于创建的表值函数我们可以进行数据的筛选

具体的数据就不粘贴了。

sql server 创建内联表值函数,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。