Documentation Index
Fetch the complete documentation index at: https://docs.paradedb.com/llms.txt
Use this file to discover all available pages before exploring further.
min and max return the smallest and largest values of a column, respectively.
SQL’s MIN/MAX syntax is supported in beta. To enable it, first run:
SQL
Min
Themin aggregation returns the smallest value in a field.
Expected Response
SQL Min Syntax
Withparadedb.enable_aggregate_custom_scan enabled, the following query is equivalent to the above and is executed in the same way.
SQL
MIN ignores null values. Use COALESCE to include them in the final result:
SQL
Max
Themax aggregation returns the largest value in a field.
SQL
Expected Response
SQL Max Syntax
Withparadedb.enable_aggregate_custom_scan enabled, the following query is equivalent to the above and is executed in the same way.
SQL
MAX ignores null values. Use COALESCE to include them in the final result:
SQL