“Consulta interna junção” Respostas de código

Consulta interna junção

SELECT
	customer.customer_id,
	first_name,
	last_name,
	amount,
	payment_date
FROM
	customer
INNER JOIN payment 
    ON payment.customer_id = customer.customer_id
ORDER BY payment_date;
Bahasa kode:  SQL (Structured Query Language)  ( sql )
Determined Dormouse

junção interna do SQL

SELECT   field1, CASE field2
         WHEN condition1 THEN 'result1'
         WHEN condition2 THEN 'result2'
         ELSE 'result'
      END, field3
FROM table_name;
Snippets

Respostas semelhantes a “Consulta interna junção”

Procure respostas de código populares por idioma

Procurar outros idiomas de código