在表t1中有字段a, b
在表t2中有字段b, c现在想通过a 来求b和c
我是这样写的,
select t1.b, t2.c from t1 inner join t2 on t1.b = t2.b where t1.a = "***" 
请问有什么问题呢 ,谢谢 。