How to Create a Table in MySQL

Download ArticleDownload Article

Tables make up the structure of your MySQL databases. Tables contain the information that is entered into the database, and can be created to suit basically any data storage need. Creating a table only takes a few minutes, especially if you only have a few different entries to save. See Step 1 below to get started.

Part 1
Part 1 of 2:

Creating the Table

Download Article
  1. How.com.vn English: Step 1 Open your database.
    In order to create a table, you must have a database to house it in. You can open your database by typing USE database at the MySQL command prompt.
    • If you don't remember your database's name, type SHOW DATABASES; to list the databases on the MySQL server.
    • If you don't have a database yet, you can create one by typing CREATE DATABASE database;. The database name cannot contain spaces.
  2. How.com.vn English: Step 2 Learn the basic data types.
    Every entry in the table is stored as a certain type of data. This allows MySQL to interact with them in different ways. The data types you will use will depend on the needs of your table. There are many more types than these, but you can use these to make a basic, useful table:
    • INT - This data type is for whole numbers, and is often used for ID fields.
    • DECIMAL - This data type stores decimal values, and is defined by the total number of digits and after the number after the decimal. For example: DECIMAL(6,2) would store numbers as "0000.00".
    • CHAR - This is the basic data type for text and strings. You would normally define a limit for the number of characters stored, such as CHAR(30). You can also use VARCHAR to vary the size based on input. Phone numbers should also be stored using this data type, as they often contain symbols and do not interact with numbers (they are not added, subtracted, etc.)[1].
    • DATE - This data type stores dates in the format YYYY-MM-DD. Use this if you need to store someone's age as opposed to their actual age, otherwise you will need to update the entry every year.
    Advertisement
  3. How.com.vn English: Step 3 Create your table.
    To create your table in the command line, you will be creating all of your fields in one command. You create tables using the CREATE TABLE command, followed by your table's information. To create a basic employee record, you would enter the following command:
    CREATE TABLE employees (id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, lastname VARCHAR(20), firstname VARCHAR(20), phone VARCHAR(20),  dateofbirth DATE)
    • INT NOT NULL PRIMARY KEY AUTO_INCREMENT creates an ID number for each employee that is added to the record. The number increases each time automatically. This allows you to easily reference employees with other functions.
    • Although VARCHAR allows you to trim the size based on input, you can set a limit for it so that the user can't input strings that are too large. In the above example, both first name and last name are limited to 20 characters each.
    • Note that the phone number entry is stored as VARCHAR so that symbols are handled correctly.
  4. How.com.vn English: Step 4 Verify that your table was created properly.
    Once you create your table, you will receive a message that it was successfully made. You can now use the DESCRIBE command to ensure that you included all the fields you wanted to and that they have the right data types. Type DESCRIBE database; and refer to the chart that appears to check your table's structure.
  5. How.com.vn English: Step 5 Create a table using PHP.
    If you are using PHP to administer your MySQL database through a webserver, you can create a table using a simple PHP file. This assumes that the database already exists on your MySQL server. Enter the following code to create the same table as Step 3, replacing the connection information with your own:
    <?php$connection=mysqli_connect({{samp|server}},{{samp|user}},{{samp|password}}, {{samp|database}});if (mysqli_connect_errno()){echo "Failed to connect to MySQL: " . mysqli_connect_error();}$sql = "CREATE TABLE employees (id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, lastname VARCHAR(20),firstname VARCHAR(20),phone VARCHAR(20),dateofbirth DATE)";if (mysqli_query($connection,$sql)){echo "Table employees created successfully";}else{echo "Error creating table: " . mysqli_error($connection);}?>
  6. Advertisement
Part 2
Part 2 of 2:

Adding Entries

Download Article
  1. How.com.vn English: Step 1 Add a single entry to your table.
    You can enter data into your table directly from the command line. You can use one command to enter all of the related fields for an entry using INSERT INTO:
    INSERT INTO employees (id, lastname, firstname, phone, dateofbirth) VALUES (NULL, 'Smith', 'John', '(555)555-5555', '1980-01-31');
    • By entering NULL for the ID, the value will increase by 1 from the last entry, resulting in the next ID number.
    • Make sure that each value you enter has single quotes (') around it.
  2. How.com.vn English: Step 2 Add multiple entries at once.
    If you have all of the data in front of you, you can insert multiple entries with one INSERT INTO command. Simply separate the value sets with a comma:
    INSERT INTO employees (id, lastname, firstname, phone, dateofbirth) VALUES (NULL, 'Smith', 'John', '(555)555-5555', '1980-01-31'), (NULL, 'Doe', 'Jane', '(555)555-5551', '1981-02-28'), (NULL, 'Baker', 'Pat', '(555)555-5554', '1970-01-31');
  3. How.com.vn English: Step 3 Display your table.
    Once you've inserted a few entries, you can display your table to see how everything looks. This will let you see if you've missed any information or if something is in the wrong spot. To display the table created above table, type SELECT * FROM employees.
    • You can perform more advanced displays by adding filters to the search. For example, to return the table sorted by date of birth, you would type SELECT lastname, firstname, dateofbirth FROM employees ORDER BY dateofbirth
    • Reverse the order of the results by adding DESC to the end of the command.
  4. How.com.vn English: Step 4 Enter data using an HTML form.
    There are other ways to enter data into your new table. One of the most common is through using a form on a web page. To see how to create a basic form to fill out your table, see this guide.
  5. Advertisement

Expert Q&A

Search
Add New Question
  • Question
    How can I improve my writing in PHP and MySQL?
    How.com.vn English: Tyrone Showers
    Tyrone Showers
    Technologist
    Tyrone Showers is a Technologist and the Co-owner of Taliferro Group, an IT consulting company based in Seattle, Washington. With over 35 years of professional experience, he specializes in API Design, e-Commerce, Operational Efficiency, and website development. He has a B.S. in Computer Science from DeVry Institute of Technology.
    How.com.vn English: Tyrone Showers
    Technologist
    Expert Answer
    Jumpstart your journey in MySQL and PHP by engaging in a real, paid project, preferably for a local business or non-profit. Focus on mastering specific PHP and MySQL functions relevant to the project, adopting an agile development approach with short sprints and regular reviews. Embrace 'just-in-time learning,' exploring niche resources for deeper insights. Document your actions meticulously, and experiment with unconventional tools. Regularly update the client on progress, incorporating their feedback. This hands-on, project-centric approach accelerates the learning curve, requiring real-time problem-solving.
Ask a Question
200 characters left
Include your email address to get a message when this question is answered.
Submit
      Advertisement

      Video

      Tips

      Submit a Tip
      All tip submissions are carefully reviewed before being published
      Thanks for submitting a tip for review!

      Expert Interview

      Thanks for reading our article! If you’d like to learn more about programming, check out our in-depth interview with Tyrone Showers.

      About This Article

      How.com.vn English: Tyrone Showers
      Co-authored by:
      Technologist
      This article was co-authored by Tyrone Showers. Tyrone Showers is a Technologist and the Co-owner of Taliferro Group, an IT consulting company based in Seattle, Washington. With over 35 years of professional experience, he specializes in API Design, e-Commerce, Operational Efficiency, and website development. He has a B.S. in Computer Science from DeVry Institute of Technology. This article has been viewed 103,844 times.
      How helpful is this?
      Co-authors: 17
      Updated: February 21, 2024
      Views: 103,844
      Categories: Software
      Article SummaryX

      1.Open the database.
      2.Type "CREATE TABLE" followed by your table's info.
      3.Press Enter.
      4.Use "INSERT INTO" to add entries.

      Did this summary help you?

      Thanks to all authors for creating a page that has been read 103,844 times.

      Is this article up to date?

      ⚠️ Disclaimer:

      Content from Wiki How English language website. Text is available under the Creative Commons Attribution-Share Alike License; additional terms may apply.
      Wiki How does not encourage the violation of any laws, and cannot be responsible for any violations of such laws, should you link to this domain, or use, reproduce, or republish the information contained herein.

      Notices:
      • - A few of these subjects are frequently censored by educational, governmental, corporate, parental and other filtering schemes.
      • - Some articles may contain names, images, artworks or descriptions of events that some cultures restrict access to
      • - Please note: Wiki How does not give you opinion about the law, or advice about medical. If you need specific advice (for example, medical, legal, financial or risk management), please seek a professional who is licensed or knowledgeable in that area.
      • - Readers should not judge the importance of topics based on their coverage on Wiki How, nor think a topic is important just because it is the subject of a Wiki article.

      Advertisement