- SQL code
select t1.* , t2.street, t2.city, t2.country from t_person t1,t_address t2 where t1.id = t2.no and t1.name= t2.xingming and t2.status='活着'
t2.street这报没有发现from keyword的错误
------解决方案--------------------
语法上没看出来 啥错误·~
select t1.* , t2.street, t2.city, t2.country from t_person t1,t_address t2 where t1.id = t2.no and t1.name= t2.xingming and t2.status='活着'