这条命令有没有语法错误
时间: 2023-07-08 11:44:00 浏览: 84
这条命令存在语法错误,正确的语法应该是:
```
select * from employees as e
join salary as s on e.employee_id=s.employee_id
where employee_id in (select employee_id
from salary
where year(date)=2018
group by employee_id
having sum(basic+bonus)>300000);
```
在这个查询中,我们使用了 `join` 关键字来连接 `employees` 表和 `salary` 表,同时使用 `where` 子句来过滤符合条件的员工信息。
阅读全文