日期:2011-01-25 23:11:00 来源:本站整理
<b>SQL查询最大最小值的示例</b>[MSSQL防范]
本文“<b>SQL查询最大最小值的示例</b>[MSSQL防范]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
下面这个SQL查询最大最小值的例子利用了Northwind数据库,取出每种书目中价钱最贵的3本书,但愿可以让您对SQL查询有更多的熟习.
<
- declare @Category table
- (
- id int identity(1,1) not null,
- CategoryId int,
- CategoryName varchar(50)
- )
- declare @MostExpensive table
- (
- ProductName varchar(50)
- )
- declare @counter int,@number int
- set @counter=0
- insert @Category select CategoryId,CategoryName from Categories
- select @number=count(*) from @Category
- while @counter<@number
- begin
- set @counter=@counter+1
- insert @MostExpensive select top 3 ProductName from products where categoryid=(select CategoryId from @Category where id=@counter) order by UnitPrice desc
- end
- select * from @MostExpensive
以上是“<b>SQL查询最大最小值的示例</b>[MSSQL防范]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |
评论内容只代表网友观点,与本站立场无关!
评论摘要(共 0 条,得分 0 分,平均 0 分)
查看完整评论