Answers for "how to get the max record in postgres"

SQL
3

postgres select max value

SELECT * FROM payment
WHERE amount = (
 	SELECT
  	   MAX(amount)
	FROM
	   payment
);
Posted by: Guest on July-15-2020

Code answers related to "how to get the max record in postgres"

Code answers related to "SQL"

Browse Popular Code Answers by Language