连接两个表sqlite里面,t1 有两个字段code ,name,t2 有两个字段 code,priceselect code,price from t2 where t1.code=t2.code为何没有结果?[解决办法]select t2.code,t2.price from t2,t1 where t1.code=t2.code