Wednesday, August 10, 2011

What is mysql

What is MySQL?


MySQL is a database.

The data in MySQL is stored in database objects called tables.

A table is a collection of related data entries and it consists of columns and rows.

Databases are useful when storing information categorically.

Database Tables

A database most often contains one or more tables. Each table is identified by a name (e.g. "Customers" or "Orders"). Tables contain records (rows) with data.

Queries

A query is a question or a request.

With MySQL, we can query a database for specific information and have a recordset returned.


No comments:

Post a Comment