Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Support SELECT DISTINCT in new SQL engine #833

Prev Previous commit
Next Next commit
Add doc for distinct * limitation
  • Loading branch information
dai-chen committed Nov 26, 2020
commit 89bf814e2648c20410a376e564c8f14451a0d715
2 changes: 1 addition & 1 deletion docs/user/dql/basics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ Result set:
Example 4: Selecting Distinct Fields
------------------------------------

By default, ``SELECT ALL`` takes effect to return all rows. ``DISTINCT`` is useful when you want to de-duplicate and get unique field value. You can provide one or more field names.
By default, ``SELECT ALL`` takes effect to return all rows. ``DISTINCT`` is useful when you want to de-duplicate and get unique field value. You can provide one or more field names ('DISTINCT *' is not supported yet).

SQL query::

Expand Down