实现表函数很简单: 下面是一个不带输入参数的表函数 ? create function tvpoints() returns table as return ( select * from tb_users ); 这个表函数数查询所有用户表的数据 对于多语句表函数,在 BEGIN...END 语句块中定义的函数体包含一系列 Transact-SQ
实现表值函数很简单:
下面是一个不带输入参数的表值函数
?
create function tvpoints()
returns table
as
return
(
select * from tb_users
);
|
这个表值函数数查询所有用户表的数据
对于多语句表值函数,在 BEGIN...END 语句块中定义的函数体包含一系列 Transact-SQL 语句,
这些语句可生成行并将其插入将返回的表中。
以下示例创建了一个表值函数.
?
create function tvpoints()
returns @points table (x float ,
y float )
as begin
insert @points values (1,2);
insert @points values (3,4);
return ;
end
|
查询表值函数跟查询普通表一样
select * from tvpoints()
返回的是一张表
带输入参数的表值函数
?
create function tvpoints2(@x AS int ,@y as int )
returns @points table (x float ,
y float )
as begin
insert @points values (@x,@y);
return ;
end
|
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn