PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

Comment obtenir le min/max de deux entiers dans Postgres/SQL ?

Jetez un œil au PLUS GRAND et au MOINS.

UPDATE my_table
SET my_column = GREATEST(my_column - 10, 0);