From your post I guess you are trying to duplicate ID = '222', but not '1111', right?
How about:
select *
From lookup_vw(nolock)
where cod = 'oac'
and acc_id in ('1111', '222')
UNION ALL
select *
From lookup_vw(nolock)
where cod = 'oac'
and acc_id in ('222')