单项选择题
雇员表中只有first_name和last_name名字字段,在Mysql的命令行提示符下,显示出first_name-last_name的结果,请问这该怎么实现()
A.select first_name-last_name from employeesB.select CONCAT_WS("-",first_name,last_name)from employeesC.select first_name+"-"+last_name from employeesD.select first_name&"-"&last_name from employees
单项选择题 公司需要将员工表中first_name和last_name合并成一个名字显示,以下哪个解决方案更合适()
单项选择题 某公司月度报表中,需要体现公司所有员工的平均月薪,以下能正确查询出结果的是()
单项选择题 需要计算出雇员表中所有员工月薪的薪水总和,以下哪个select语句可以正确输出结果()