December 2005
Intermediate to advanced
336 pages
4h 52m
English
In this chapter you’ll learn the basics of table creation, alteration, and deletion.
MySQL statements are not used just for table data manipulation. Indeed, MySQL can be used to perform all database and table operations, including the creation and manipulation of tables themselves.
There are generally two ways to create database tables:
Using an administration tool (like the ones discussed in Chapter 2, “Introducing MySQL”) that can be used to create and manage database tables interactively.
Tables may also be manipulated directly with MySQL statements.
To create tables programmatically, the CREATE TABLE SQL statement is used. It is worth noting that when you use interactive tools, you are ...
Read now
Unlock full access