Search posts...
select id, case when SIZE_OF_COLONY <= 100 then 'LOW' when SIZE_OF_COLONY <= 1000 then 'MEDIUM' else 'HIGH' end SIZE from ecoli_data order by 1 asc
silver