select sum(wage) wage form employee where depart_name !="人力资源部" group by depart_Id
时间: 2023-05-30 12:03:03 浏览: 111
SQL数据库经典面试题修改笔试题有答案.doc
As an AI language model, I cannot access any database to execute SQL queries. However, I can explain the meaning of the query you have provided.
The query you have provided selects the sum of wages of all employees except those who belong to the "人力资源部" department. The result is grouped by the department ID.
阅读全文