SelectStatement constructor

SelectStatement({
  1. WithClause? withClause,
  2. bool distinct = false,
  3. required List<ResultColumn> columns,
  4. Queryable? from,
  5. Expression? where,
  6. GroupBy? groupBy,
  7. List<NamedWindowDeclaration> windowDeclarations = const [],
  8. OrderByBase? orderBy,
  9. LimitBase? limit,
})

Implementation

SelectStatement(
    {WithClause? withClause,
    this.distinct = false,
    required this.columns,
    this.from,
    this.where,
    this.groupBy,
    this.windowDeclarations = const [],
    this.orderBy,
    this.limit})
    : super._(withClause);