如何用SQL语句创建这样一个视图?

2024-10-28 16:10:08
推荐回答(1个)
回答1:

你试试下面的SQL能不能在SQL里跑,再去试试创建视图:
select dept_code,status,count(1)
from table (你的表名)
group by dept_code,status