BLOGS BY TOPIC▼
BLOGS BY AUTHOR▼
BLOGS BY YEAR▼
If you want training in how to use temporary tables in SQL, read on! This blog shows how to create temporary tables and how to drop them safely whether or not they exist. Finally, the blog lists the pros and cons of using temporary tables in SQL.
- Temporary Tables in SQL Server - a Training Blog (this blog)
- Where Temporary Tables are Stored - TEMPDB Database
- Dropping Temporary Tables - Object_Id or BEGIN TRY
- Pros and Cons of Temporary Tables
This article is part of a complete SQL tutorial. Another way to learn SQL is to attend a Wise Owl SQL training course.
Posted by Andy Brown on 20 October 2011
You need a minimum screen resolution of about 700 pixels width to see our blogs. This is because they contain diagrams and tables which would not be viewable easily on a mobile phone or small laptop. Please use a larger tablet, notebook or desktop computer, or change your screen resolution settings.
Temporary Tables in SQL Server - a Training Blog
You can use a variety of techniques to work with sets of records in SQL, but I always find myself coming back to temporary tables!
What are Temporary Tables?
Suppose that you want to take a table of films (or movies for most of the world) and extract ones which won more than 5 Oscars for subsequent processing. Here's one way to do this:
-- write all films scoring more than
-- 5 Oscars into a new table
SELECT
FilmName,
FilmOscarWins
INTO
#GoodFilms
FROM
tblFilm
WHERE
FilmOscarWins > 5
-- now show all of the records in this
-- temporary table
SELECT * FROM #GoodFilms
ORDER BY FilmOscarWins DESC
The SQL code puts the records into a table with the name #GoodFilms. The # prefix shows that this is a temporary table.
A tempoary table is released at the end of the SQL which created it (in theory). In practice, they seem to hang around for a bit longer than this, and it's good practice to drop temporary tables first before recreating them (see later in this blog for how to do this).
The rest of this blog looks at temporary tables in more detail, showing where they are stored, how to drop them and the pros and cons of using them.
- Temporary Tables in SQL Server - a Training Blog (this blog)
- Where Temporary Tables are Stored - TEMPDB Database
- Dropping Temporary Tables - Object_Id or BEGIN TRY
- Pros and Cons of Temporary Tables