This Tutorial
- Using SQL to create a MySQL database
- Using SQL to access MySQL databases
- Using SQL to describe MySQL database tables

Related Pages
Microsoft Access Workgroup tutorial
Microsoft Access Database Splitter tutorial
Microsoft Access Build Your Own Database manual
- SQL tutorial for Microsoft Access
- SQL tutorial for SQL Server
SQL database comparisons
- Comparison of the commands and operators used in WHERE clauses in Oracle, Microsoft Access, MySQL and SQL Server, and how to limit the number of rows returned
- Comparison of useful functions in Oracle, MySQL, Microsoft Access and SQL Server

Structured Query Language (SQL) tutorial

Using SQL to Describe MySQL Database Tables

Describing tables

MySQL provides a command that displays the column details of the tables.

  • Issue the following command at the mysql prompt:

   DESCRIBE booking;

The display should be as follows:

The structure of the booking table

DESCRIBE lists all the column names along with the table's column types.

Now let's see how we can insert data into our table.

What’s next?

In this chapter, you have learnt the basics of database and table creation using SQL.  Following from this, you will discover how to add data to tables, and to extract information from this data. 


  • Home
  • |
  • Sitemap
  • |
  • Databases
  • |
  • Web development
  • |
  • Delphi development
  • |
  • Image manipulation
  • |
  • KaSaB
  • |
  • Contact