Код: Выделить всё
@Entity
@Immutable
@Subselect("
SELECT mt.id,
COALESCE((
SELECT a.status
FROM account a
WHERE mt.id = a.fk_id
AND a.system = {MY_PROPERTY}
FETCH FIRST 1 ROWS ONLY
), 'NONE') AS custom
FROM MY_TABLE mt
...
")
public class MySearch {
Подробнее здесь: https://stackoverflow.com/questions/797 ... -subselect