mysql根据count特定的值 2019-08-19 本文已影响0人 在暗处凝视世间喧华繁闹 ``` select count(case when id>4 then id end),count(case when id=1 then id end ) from test; ```