The ONLY Keyword
If the FROM clause includes a permanent table that is a supertable within a typed table hierarchy, the query returns the qualifying rows from both the supertable and from its subtables by default, unless you specify the ONLY keyword.
For the SELECT statement to return rows from the supertable only,
you must include the ONLY keyword immediately before the supertable
name in the FROM clause, and you must enclose the identifier or synonym
of the supertable within parentheses, as in this example:
SELECT * FROM ONLY(super_tab);The data sources for this query do not include the subtables of super_tab.