Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
SQL Union | SQL Joining Tables
Data Manipulation using SQL
course content

Conteúdo do Curso

Data Manipulation using SQL

Data Manipulation using SQL

1. Database and Nested Queries
2. SQL Joining Tables
3. SQL Tasks

SQL Union

UNION is an operator that concatenates results of different SQL queries:

1234567
--do not run this query SELECT columns FROM table1 UNION SELECT columns FROM table2 UNION ... SELECT columns FROM tableN
copy

There is also an operator UNION ALL, and the difference is that UNION returns distinct values, unlike UNION ALL.

Requirements for using UNION operators:

  • number of columns in SELECT should be the same
  • data types and order of columns should be the same

Tarefa

You want to get some info about songs from three decades: 1970s, 1980s, and 1990s. Find the prices of the cheapest and the most expensive songs for each decade in separate queries. You're free to use JOIN, BETWEEN, or any other operators, but you should do three separate queries and concatenate them with UNION.

Tarefa

You want to get some info about songs from three decades: 1970s, 1980s, and 1990s. Find the prices of the cheapest and the most expensive songs for each decade in separate queries. You're free to use JOIN, BETWEEN, or any other operators, but you should do three separate queries and concatenate them with UNION.

Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo

Tudo estava claro?

Seção 2. Capítulo 5
toggle bottom row

SQL Union

UNION is an operator that concatenates results of different SQL queries:

1234567
--do not run this query SELECT columns FROM table1 UNION SELECT columns FROM table2 UNION ... SELECT columns FROM tableN
copy

There is also an operator UNION ALL, and the difference is that UNION returns distinct values, unlike UNION ALL.

Requirements for using UNION operators:

  • number of columns in SELECT should be the same
  • data types and order of columns should be the same

Tarefa

You want to get some info about songs from three decades: 1970s, 1980s, and 1990s. Find the prices of the cheapest and the most expensive songs for each decade in separate queries. You're free to use JOIN, BETWEEN, or any other operators, but you should do three separate queries and concatenate them with UNION.

Tarefa

You want to get some info about songs from three decades: 1970s, 1980s, and 1990s. Find the prices of the cheapest and the most expensive songs for each decade in separate queries. You're free to use JOIN, BETWEEN, or any other operators, but you should do three separate queries and concatenate them with UNION.

Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo

Tudo estava claro?

Seção 2. Capítulo 5
toggle bottom row

SQL Union

UNION is an operator that concatenates results of different SQL queries:

1234567
--do not run this query SELECT columns FROM table1 UNION SELECT columns FROM table2 UNION ... SELECT columns FROM tableN
copy

There is also an operator UNION ALL, and the difference is that UNION returns distinct values, unlike UNION ALL.

Requirements for using UNION operators:

  • number of columns in SELECT should be the same
  • data types and order of columns should be the same

Tarefa

You want to get some info about songs from three decades: 1970s, 1980s, and 1990s. Find the prices of the cheapest and the most expensive songs for each decade in separate queries. You're free to use JOIN, BETWEEN, or any other operators, but you should do three separate queries and concatenate them with UNION.

Tarefa

You want to get some info about songs from three decades: 1970s, 1980s, and 1990s. Find the prices of the cheapest and the most expensive songs for each decade in separate queries. You're free to use JOIN, BETWEEN, or any other operators, but you should do three separate queries and concatenate them with UNION.

Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo

Tudo estava claro?

UNION is an operator that concatenates results of different SQL queries:

1234567
--do not run this query SELECT columns FROM table1 UNION SELECT columns FROM table2 UNION ... SELECT columns FROM tableN
copy

There is also an operator UNION ALL, and the difference is that UNION returns distinct values, unlike UNION ALL.

Requirements for using UNION operators:

  • number of columns in SELECT should be the same
  • data types and order of columns should be the same

Tarefa

You want to get some info about songs from three decades: 1970s, 1980s, and 1990s. Find the prices of the cheapest and the most expensive songs for each decade in separate queries. You're free to use JOIN, BETWEEN, or any other operators, but you should do three separate queries and concatenate them with UNION.

Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Seção 2. Capítulo 5
Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
We're sorry to hear that something went wrong. What happened?
some-alt