Home > Database > Mysql Tutorial > body text

Sqlserver表值函数

WBOY
Release: 2016-06-07 15:27:59
Original
1559 people have browsed it

实现表函数很简单: 下面是一个不带输入参数的表函数 ? 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 @pointstable (xfloat, y float)

as begin

insert @pointsvalues(1,2);

insert @pointsvalues(3,4);

return;

end

查询表值函数跟查询普通表一样
select * from tvpoints()
返回的是一张表

带输入参数的表值函数

?

create function tvpoints2(@xAS int,@yas int)

returns @pointstable (xfloat, y float)

as begin

insert @pointsvalues(@x,@y);

return;

end

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!