You are on page 1of 1

The table FF_FTYPE_CONTEXT_USAGES tells you which context_id's go with which

formula_type_id's.

SELECT a.formula_type_name

, c.context_name

FROM ff_formula_types a

, ff_ftype_context_usages b

, ff_contexts c

WHERE a.formula_type_id = b.formula_type_id

AND b.context_id = c.context_id;

You might also like