SQL的语句查询(在线等待)
hj12 2002-12-19 03:50:38 string uid0,udep,uid1,uid2
uid0=ddlb_1.text;
udep=ddlb_2.text;
if(udep="上司") then
select fuid
into :uid1
from tinfor
where uid=:uid0
connect using SQLCA;
select *
from pinfor
where uid=:uid1
connect using SQLCA;
end if
我要实现2个表的连接查询可是上面的代码有错误!
谁能帮我一下~!