create table city(cid int,cnm char(10))
create table conduct(oid char(10),cid int,sort int)insert into city select 1,    '北京' union all
select 2 ,   '上海' union all
select 3  ,  '广州'insert into conduct select '4200000' ,1 ,2select a.CId,a.CNm,b.Sort from City a,Conduct b where  a.cid*=b.cid and b.OId='4200000'