We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
.*
Given a colum c with structured typeT having fields a and b, SELECT c.* would be equivalent to SELECT c.a, c.b.
c
T
a
b
SELECT c.*
SELECT c.a, c.b