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
相关文章
相关标签/搜索