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 g
相關文章
相關標籤/搜索