以我下面的SQL语句!关于函数怎么写?
发布网友
发布时间:2022-04-10 03:09
我来回答
共3个回答
热心网友
时间:2022-04-10 04:39
create proc mypr1
@pe int
As
select a.name name1,a.*,b.* from piwik_site a,piwik_archive_numeric_2013_10 b where a.idsite=b.idsite and b.name='nb_visits' and period=@pe order by b.value desc
热心网友
时间:2022-04-10 05:57
sqlserver 函数声名格式如下:
create function()
returns tables
as
begin
return 语句;
end
热心网友
时间:2022-04-10 07:31
http://zhidao.baidu.com/question/1881685731803127388.html?oldq=1
这个问题也是你问的吧? 不是已经回答你了么 如果你想要详细的写法 请先把表结构和需求写清楚吧 提问也是要有技巧的追问
这是表!数据太多!没有把period里面数据显示出来 period就4个值 1 2 3 4