select first_name,last_name from person_tal group by(first_name,last_name)
出现operand should contain 1 columns(s)这样的问题
原来是goup by 后面只能跟一列
select first_name,last_name from person_tal group by(first_name)
这一句就能够成功查出结果啦!
出现operand should contain 1 columns(s)这样的问题
原来是goup by 后面只能跟一列
select first_name,last_name from person_tal group by(first_name)
这一句就能够成功查出结果啦!