重名的列,前面没加表名或别名 表a和表b存在相同的字段 id 不能识别
错误:
select id from test a ,test b
修改:
select a.id from test a ,test b