Just Host 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 Just Host 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.