select E.emp_no,D.dept_name from foo.emp as E inner join foo.dept as D on E.dept_no=D.dept_no
这样一条join,如果我想返回 E的全部字段。要一个一个写吗?还是有其他方法?