This tutorial describes how to create tables, stored procedures and other objects at MySQL server.
In this walkthrough:
In order to create database objects you have to connect to server. This process is described in details in the tutorial Logging onto the server.
Database objects are created using Data Definition Language (DDL), which is a part of SQL. The DDL statements can be executed on server by account that has necessary privileges.
There are two ways to manipulate a database. You can build DDL statements manually and run them within MySQL Command Line Client or a component like MySqlCommand. Another way is to use IDE - visual shells that provide graphical user interface to manage database. We will discuss both ways.
Actually there are lots of ways to create tables on server. Any tool or component that is capable of running a SQL query, can be used to manage database objects. For example, MySqlCommand suits fine for creating objects one by one, while MySqlScript is designed for executing series of DDL/DML statements. For information on DDL statements syntax refer to MySQL documentation.