select month(入學(xué)日期) as 入學(xué)月份,count(*) as 人數(shù) from students group by month(入學(xué)日期)
從students表中分組統(tǒng)計(jì)出每個(gè)月份入學(xué)的學(xué)生人數(shù)。
create procedure xxk5 ( @a char(8),@b varchar(10),@c numeric(5,2) ) as begin insert into score values(@a,@b,@c) end
向score表中插入學(xué)號(hào)為@a的值、課程名為@b的值、成績(jī)?yōu)锧c的值的學(xué)生成績(jī)記錄。
declare @a numeric(5,2),@b numeric(5,2) set @a=(select max(成績(jī)) from score) set @b=(select min(成績(jī)) from score) print @a-@b
求出score表中最高成績(jī)與最低成績(jī)的分?jǐn)?shù)之差。