group by和distinct等价写法
select large_category, category from v_sys_supplier t where t.large_category = 'ME' group by large_category, category
等价于下面的写法
select DISTINCT large_category, category from v_sys_supplier t where t.large_category = 'ME';
group by和distinct等价写法
select large_category, category from v_sys_supplier t where t.large_category = 'ME' group by large_category, category
等价于下面的写法
select DISTINCT large_category, category from v_sys_supplier t where t.large_category = 'ME';