sqlest.ast
A column, column literal, or column expression.
This is a more general concept than it may first seem. For example, in the SQL:
SELECT a, b, c FROM t WHERE a == 1
all of the following would be represented as instances of Column: a, b, c, 1, and a == 1.
Column
a
b
c
1
a == 1
A column, column literal, or column expression.
This is a more general concept than it may first seem. For example, in the SQL:
SELECT a, b, c FROM t WHERE a == 1
all of the following would be represented as instances of
Column
:a
,b
,c
,1
, anda == 1
.