आपको एक ही क्वेरी में दो बार एक ही तालिका का उपयोग करके, लेकिन अलग-अलग ALIAS का उपयोग करके स्वयं-जुड़ने की आवश्यकता है...
select
t1.field,
t1.name,
t1.value as ThisIsYourParentKey,
t2.name as ParentName,
t2.value as GrandParentKey
from
YourTable t1
left join YourTable t2
on t1.value = t2.field
where
t1.name = 'a2'