Reader small image

You're reading from  Learn SQL Database Programming

Product typeBook
Published inMay 2020
Reading LevelIntermediate
PublisherPackt
ISBN-139781838984762
Edition1st Edition
Languages
Right arrow
Author (1)
Josephine Bush
Josephine Bush
author image
Josephine Bush

Josephine Bush has over 10 years experience as a Database Administrator. Her experience is extensive and broad-based, including in financial, business, and energy data systems using MySQL, SQL Server, Oracle, and PostgreSQL. She is a Microsoft Certified Solutions Expert: Data Management and Analytics. She holds a BS in Information Technology, an MBA in IT Management, and an MS in Data Analytics.
Read more about Josephine Bush

Right arrow

Chapter 11

  1. Correlated and non-correlated.

  2. Non-correlated

    Correlated

    The inner query doesn't depend on the outer query.

    Inner query depends on the outer query.

    Can run as a standalone query.

    Can't run as a standalone query.

    Executed only once.

    Executed once for each row selected in the outer query.

    Executed before the outer query.

    Executed after the outer query.

    Can't be used instead of JOIN on the outer query.

    Can be used instead of JOIN on the outer query, but will be slower than a JOIN.

  3. SELECT, WHERE, FROM, INSERT, UPDATE, and DELETE clauses.
  4. SELECT and WHERE clauses.
  5. A container for a single SQL statement that will allow you to query a temporary result set.
  6. Recursive and non-recursive.
  7. Locking is what happens when a query runs against a database.
  8. With an index hint.
  9. READ UNCOMMITTED, READ COMMITTED, REPEATABLE READ...
lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
Learn SQL Database Programming
Published in: May 2020Publisher: PacktISBN-13: 9781838984762

Author (1)

author image
Josephine Bush

Josephine Bush has over 10 years experience as a Database Administrator. Her experience is extensive and broad-based, including in financial, business, and energy data systems using MySQL, SQL Server, Oracle, and PostgreSQL. She is a Microsoft Certified Solutions Expert: Data Management and Analytics. She holds a BS in Information Technology, an MBA in IT Management, and an MS in Data Analytics.
Read more about Josephine Bush