摘要:How to calculate Median in SQL ServerNothing earth-shattering here, I was just helping out a colleague with this so I thought I'd post up the example I gave him.-- sample table:create table People( Person varchar(1) primary key, City varchar(10), Age int)go-- with some sample data:insert into Pe
阅读全文
posted @ 2012-05-28 17:48