A、select distinct(cid) from orders o1 where o1.pid in (.p01.,.p02.)
B、select distinct(cid) from orders o1,orders o2 where o1.pid=.p01. and o2.pid=.p02. and o1.cid=o2.cid
C、select distinct(cid) from orders o1 where pid=.p01. and cid in (select cid from orders where pid =.p02.)
D、select distinct(cid) from orders o1,orders o2 where o1.pid=.p01. and o2.pid=.p02.