//获取最大的
update jgyf set 矮小植物名称1 = (select 矮小植物名称 from jgxyf where jgxyf.样方号 = jgyf.样方号 order by jgxyf.矮小分盖度 DESC)
//下来是次大的
update jgyf set 矮小植物名称1 = (select 矮小植物名称 from jgxyf where jgxyf.样方号 = jgyf.样方号 and jgxyf.矮小分盖度 NOT IN ( select max(jgxyf.矮小分盖度) from jgxyf where jgxyf.样方号 = jgyf.样方号) order by jgxyf.矮小分盖度 DESC)
//下来是所有的 逗号分割
select group_concat(jgxyf.矮小植物名称,',') from jgxyf where jgxyf.矮小分盖度 NOT IN( select max(矮小分盖度) from jgxyf group by 样方号) GROUP BY jgxyf.样方号
//找出各项最大的值
select max(矮小分盖度) from jgxyf group by 样方号