表Table_1数据
-- 需求:不使用where条件,查询A列,值为'A'的,B列的最小值 select MIN(case A when 'A' then B end) from Table_1
结果