Skip to Content
SQL Primer: An Accelerated Introduction to SQL Basics
book

SQL Primer: An Accelerated Introduction to SQL Basics

by Rahul Batra
June 2018
Beginner
199 pages
3h 5m
English
Apress
Content preview from SQL Primer: An Accelerated Introduction to SQL Basics
©  Rahul Batra 2018
Rahul BatraSQL Primerhttps://doi.org/10.1007/978-1-4842-3576-8_12

12. Subqueries

Rahul Batra1 
(1)
Gurgaon, Haryana, India
 

A subquery, simply put, is a query written as a part of a bigger statement. Think of it as a SELECT statement inside another one. The result of the inner SELECT can then be used in the outer query. Let us take a simple example to illustrate this.

Consider the same source tables as the ones in the joins chapter – authors_tbl and newlang_tbl. We will try to write a query (and a subquery) to display the author of a particular language (Listing 12-1).

SELECT author FROM authors_tbl
 WHERE language_id IN
 ( SELECT id FROM newlang_tbl
   WHERE language="Tcl");
Listing 12-1

A simple subquery example

The subquery SELECT ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Getting Started with SQL

Getting Started with SQL

Thomas Nield
Effective SQL: 61 Specific Ways to Write Better SQL, First Edition

Effective SQL: 61 Specific Ways to Write Better SQL, First Edition

John L. Viescas, Douglas J. Steele, Ben G. Clothier

Publisher Resources

ISBN: 9781484235768Purchase LinkPublisher Website