usa un aggregato invece di sottoquery:
select distinct controlid,
max (case when a=3 and b=13 and c=0 and d= 0 then OrderNo end) as colA,
max (case when a=2 then OrderNo end) as colB,
max (case when a=1 and b=14 and e=1 then OrderNo end) as colC,
max (case when a=3 and b=13 and e=1 and c=0 and d=0 then OrderNo end) as colD,
max (case when OrderNo=#param2# then a end) as colE
from my_table
where controlid = #param1#
group by controlid
Non so quale RDBMS usi, quindi il case when
build potrebbe dover essere modificato nel tuo dialetto locale. Questo dovrebbe essere valido per MSSQL
AGGIORNAMENTO:I miei occhiali non funzionano correttamente e quindi non ho notato il tag ORACLE. Imbarazzante...