首页 > TAG信息列表 > cunchu
mysql中位数计算方式
mysql中位数计算方式 1、建表 drop table test_cunchu.score; create table test_cunchu.score( id int not null primary key auto_increment, score decimal(10,2) not null ); 2、插入数据 insert into test_cunchu.score (score) values (89.4); insert into test