“Postgres” Kod odpowiedzi

Postgres

SELECT
	customer_id,
	SUM (amount)
FROM
	payment
GROUP BY
	customer_id
HAVING
	SUM (amount) > 200;Code language: SQL (Structured Query Language) (sql)
Obedient Osprey

PostgreSQL posiadanie

SELECT
	column1,
	aggregate_function (column2)
FROM
	table_name
GROUP BY
	column1
HAVING
	condition;
Tired Termite

Odpowiedzi podobne do “Postgres”

Pytania podobne do “Postgres”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu