Bluehost 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.

  1. Log in to your Bluehost cPanel account.
  2. Under Database Tools and select phpMyAdmin.
  3. Select the database you wish to work with.
  4. Inside the structure tab, under the list of tables (if any), there will be a place to "Create tables on database."
  5. Where is says Name, enter the name of your table.
  6. Where it says Number of Columns enter the number of columns you want to configure right now (you can always add more later).
  7. Press the Go button to proceed to the next screen.
  8. Define the column(s) by entering the following information:
    1. Name the Column.
    2. 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.)
    3. Define the Length/Values if required.  For example, the CHAR type will require you to specify the maximum number of characters allowed.
    4. The other fields are optional.
  9. 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.

Knowledgebase Article 108,205 views bookmark tags: mysql phpmyadmin


Was this resource helpful?

Did this resolve your issue?


Please add any other comments or suggestions about this content:





Recommended Help Content

Import a MySQL Database using phpMyAdmin

How do I import a backup of my database (.sql file) using phpMyAdmin?

Managing Your DB Using phpmyadmin

A repository of information on how you can manage your database by using the phpMyAdmin interface.

MySQL Repair and Optimize Tables in phpMyAdmin

How to repair and optimize your database using phpMyAdmin:

Related Help Content

How To Rename Database Tables in PHPMyAdmin

This article will show you how to rename a database table in phpMyAdmin.

Modifying table columns - phpMyAdmin

A step by step guide on how to manipulate data in your mySQL tables using phpMyAdmin

Adding a column to a db table in phpMyAdmin

Instructions on adding a column to your database in phpMyAdmin

How To Copy A Database Using PHPMyAdmin

A guide to duplicating a MySQL database using phpMyAdmin

Dropping columns from a database table using PhpMyAdmin

A tutorial on how to perminately delete columns from your mySQL database using phpMyAdmin

MySQL Database Restore

How to Restore your MySQL Database?

Searching a database in PhpMyAdmin

Step by step directions on how you can search your database using phpMyAdmin

Setting a Password for the Main MySQL User

I am prompted to set a new MySQL password. What does this mean and how do I change it?