|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
无法实现跨操作系统的应用。当然这也是微软的理由之一,只有这样才能发挥ASP最佳的能力。可是我却认为正是Windows限制了ASP,ASP的概念本就是为一个能让系统运行于一个大的多样化环境而设计的;成绩|最年夜值已经看到一个帖子,是问怎样一次(用一条查询语句)就查询出一个表中的最年夜值和最小值,个中一名如许回覆的:(拿Northwind的Products表为例)
selecttop1*fromproductsorderbyUnitPrice
union
selecttop1*fromproductsorderbyUnitPricedesc
下面这个仿佛准确,但是实在在利用了Union的时分只要最初一条Select命令才干利用Orderby参数,因而下面如许是不可的,在查询剖析器中运转会爆堕落误
上面供应查询出最年夜值和最小值的办法:
declare@HighLowtable
(
ProductNamevarchar(50)
)
insert@HighLowselecttop1ProductnamefromProductsorderbyUnitpricedesc
insert@HighLowselecttop1ProductnamefromProductsorderbyUnitprice
selectProductNamefrom@HighLow
这类办法不是一次就查询出最年夜值和最小值,而是利用了一个Table变量,将查询出的最年夜值和最小值保留进这个表中。
上面这个例子利用了Northwind数据库,掏出每种书目中代价最贵的3本书:
declare@Categorytable
(
idintidentity(1,1)notnull,
CategoryIdint,
CategoryNamevarchar(50)
)
declare@MostExpensivetable
(
ProductNamevarchar(50)
)
declare@counterint,@numberint
set@counter=0
insert@CategoryselectCategoryId,CategoryNamefromCategories
select@number=count(*)from@Category
while@counter<@number
begin
set@counter=@counter+1
insert@MostExpensiveselecttop3ProductNamefromproductswherecategoryid=(selectCategoryIdfrom@Categorywhereid=@counter)orderbyUnitPricedesc
end
select*from@MostExpensive
</p>楼上说交互性不好,太牵强了吧。在微软提供的一套框架中,利用asp做网站,开发效率高,使用人数少,减少不必要的开销。交互性是互动方式,是有开发人员决定的。 |
|