用SQL 语句创建存储过程proc1,功能是统计某院系学生人数。
用SQL语句创建存储过程proc1,功能是统计某院系学生人数。数据库名称:stuDatabase数据表:Student(StuNo,StuName,SteSex,StuC...
用SQL 语句创建存储过程proc1,功能是统计某院系学生人数。
数据库名称:stuDatabase
数据表:Student(StuNo,StuName,SteSex,StuCollege) 展开
数据库名称:stuDatabase
数据表:Student(StuNo,StuName,SteSex,StuCollege) 展开
3个回答
展开全部
create proc p(@StuCollege nvarchar(50))
as
select count(*) as 人数 from Student where StuCollege=@StuCollege
go
--
as
select count(*) as 人数 from Student where StuCollege=@StuCollege
go
--
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
use stuDatabase
go
create proc procName
as
select count(stucollege) from student group by stucollege
go
create proc procName
as
select count(stucollege) from student group by stucollege
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
sum StuNo from StuCollege
where StuCollege in(某院)
很久没用过了,记不太清楚了
应该是这样的
where StuCollege in(某院)
很久没用过了,记不太清楚了
应该是这样的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询