selectAllDistinct method

Select selectAllDistinct(
  1. Iterable<SelectResultInterface> results
)

Starts a new query, which returns distinct rows and defines the selected columns.

Implementation

Select selectAllDistinct(Iterable<SelectResultInterface> results) =>
    SelectImpl(results, distinct: true);