谁帮忙给写个SQL语句阿?
例如三个表A(a1,a2),B(b1,b2),C(c1) A.a1对应B.b2
现在向C表中插入一行数据 insert into C(c1) values(a)
从输入框中取得一字符串对应b1并从B表中查得b2再从A表中查得a2及是语句中a的内容,可能说得有点乱,请各位费心了。
参考答案:insert into C表(c1) values(select a2 from A表 where a1=(select b2 from B表 where b1=\'输入框中的值\'))