Course
Simulator
More
Premium
Log in
PostgreSQL Function Reference
Functions
MAX
MAX
Returns the maximum value in a set.
PostgreSQL 17.5
MAX
(
expression
)
expression
The expression to find max.
Examples
PostgreSQL 17.5
SELECT
MAX
(
unit_price
)
FROM
Payments
;