Chapter 10. Creating, Altering, and Dropping Tables

Many DBMSes have interactive, graphical tools that let you create and manage tables and table properties such as column definitions and constraints. In this chapter, I’ll explain how to perform those tasks programmatically by using SQL:

  • The CREATE TABLE statement creates a new table.

  • The ALTER TABLE statement modifies the structure of an existing table.

  • The DROP TABLE statement destroys a table and all its data.

  • The CREATE TEMPORARY TABLE statement creates a table that the DBMS destroys automatically when it’s no longer in use.

  • The SELECT INTO statement creates a new table from an existing one.

These statements don’t return a result, but your DBMS normally will print a message indicating whether ...

Get SQL: Visual QuickStart Guide now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.