摘要:
SQL函数大全
--聚合函数
use pubs
go
select avg(distinct price) --算平均数
from titles
where type='business'
go
use pubs
go
select max(ytd_sales) --最大数
from titles
go
use pubs
go
select min(ytd_sales) --最小数
from titles
go
use pubs
go
select type,sum(price),sum(advance) --求和
from titles
group by type
order by type
go 阅读全文
posted @ 2013-01-24 22:35
hhl_kf
阅读(300)
评论(0)
推荐(0)
浙公网安备 33010602011771号