Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ SQL In Statement | Database and Nested Queries
Data Manipulation using SQL
セクション 1.  2
single

single

bookSQL In Statement

メニューを表示するにはスワイプしてください

Nested queries

In SQL, we can put the result of the query inside another query, and use it with operator IN:

1234
SELECT title FROM songs WHERE album_id IN (SELECT id FROM albums WHERE year > 2000)
copy

This is a query to find songs that are created in the 21st century. First, the inner query executes with ids of albums after 2000 from table albums. Using these id's, we select such titles from songs, that album_id is among these albums. This query is quite easy and is using for multiple tables: you find some info in table1, that is inaccessible from table2, and use it for query from table2.

But we can also put constant values, here we selected all songs by 'Britney Spears', 'The Mammas & The Pappas' and 'Pink Floyd':

123
SELECT id FROM singers WHERE naming IN ('Britney Spears', 'The Mammas & The Pappas', 'Pink Floyd')
copy

Now the set ('Britney Spears', 'The Mammas & The Pappas', 'Pink Floyd') is a constant list of singers, and we are searching ids of these three artists. We can also use NOT IN operator:

123
SELECT id FROM singers WHERE naming NOT IN ('ABBA', 'Pink Floyd', 'Mushmellow')
copy
タスク

スワイプしてコーディングを開始

Find all the songs' titles (title), where the singer's info contains 'Solo', using nested queries.

解答

Switch to desktop実践的な練習のためにデスクトップに切り替える下記のオプションのいずれかを利用して、現在の場所から続行する
すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 1.  2
single

single

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

some-alt