--用户自定函数
--表量值函数:返回普通数据类型的值
go
create function savgs2(@name char(20))
returns int
as
begin
declare @pj int
select @pj = AVG(grade) from basexi a,wq b,wl c
where a.sno = c.sno and b.cno = c.cno and sname = @name
return @pj
end
select dbo.savgs2('关胜')-- 自定义函数之前要加上dbo.
--删除自定函数
--语法: drop function 函数名
--表值函数返回表
--显示一个班的学生信息
go
create function fun(@class char(20))
returns table
as
return (select * from basexi where sclass = @class)
select * from fun('刘氏集团')
SQL:自定函数
最新推荐文章于 2024-10-09 21:06:39 发布