-
Notifications
You must be signed in to change notification settings - Fork 8
expression_column_expression
Tony Jang edited this page Sep 25, 2020
·
1 revision
컬럼을 가지고 있는 표현식 노드입니다.
Qsi.Tree
Column
: IQsiColumnNode
표현식 노드의 컬럼입니다.
SELECT COUNT(sample_column) FROM sample_table;
다음과 같은 쿼리문에서 count(sample_column)
는 함수가 되며, sample_column
는 count 함수의 파라미터가 됩니다. 이때 sample_column는 컬럼이지만 표현식으로써 사용되었으므로 Column Expression이 됩니다.