composite column. Might help cut down on future questions...
-
+
SQL Syntax
(Thus, a qualified column reference is actually just a special case
- of the field selection syntax.)
+ of the field selection syntax.) An important special case is
+ extracting a field from a table column that is of a composite type:
+
+(compositecol).somefield
+(mytable.compositecol).somefield
+
+
+ The parentheses are required here to show that
+ compositecol> is a column name not a table name,
+ or that mytable> is a table name not a schema name
+ in the second case.