HostGator Web Hosting Help
How to Add Tables to a DB in PhpMyAdmin
How to Add Tables to a Database in PhpMyAdmin
This article demonstrates how easy it is to add a variety of tables to your mySQL database in phpMyAdmin.
- Log in to your HostGator cPanel account.
- Under Database Tools and select phpMyAdmin.
- Select the database you wish to work with.
- Inside the structure tab, under the list of tables (if any), there will be a place to "Create tables on database."
- Where is says Name, enter the name of your table.
- Where it says Number of Columns enter the number of columns you want to configure right now (you can always add more later).
- Press the Go button to proceed to the next screen.
- Define the column(s) by entering the following information:
- Name the Column.
- Select the Type of data the column will hold. Some common types include:
- INT = Integer (a number without a decimal point)
- CHAR = Characters (can hold text up to a specific length)
- VARCHAR = Variable Length Characters (a text field that is not a fixed width).
- TEXT = For holding large amounts of text.
- DATE = Can only hold dates.
- DATETIME = Can hold both a date and a time.
- (See the MySQL Data Types article for more options.)
- Define the Length/Values if required. For example, the CHAR type will require you to specify the maximum number of characters allowed.
- The other fields are optional.
- Click on Save when you are finished defining your columns.
A message indicating your table has been created will appear, and your new table will now appear on the list of tables in the database. You can click on the table to see the columns that were created for that table.
Recommended Help Content
How do I import a backup of my database (.sql file) using phpMyAdmin?
A repository of information on how you can manage your database by using the phpMyAdmin interface.
How to repair and optimize your database using phpMyAdmin:
Related Help Content
This article will show you how to rename a database table in phpMyAdmin.
A step by step guide on how to manipulate data in your mySQL tables using phpMyAdmin
Instructions on adding a column to your database in phpMyAdmin
A guide to duplicating a MySQL database using phpMyAdmin
A tutorial on how to perminately delete columns from your mySQL database using phpMyAdmin
How to Restore your MySQL Database?
Step by step directions on how you can search your database using phpMyAdmin
I am prompted to set a new MySQL password. What does this mean and how do I change it?