How to import Excel files into MySQL database

How to import Excel files into MySQL database

This article shares with you how to import Excel files into MySQL database for your reference. The specific content is as follows

1. Introduction

This blog shares with you a practical little skill. When we use a database, we often need to add the required Excel data. If we follow the traditional method, it will be time-consuming and laborious, so I will share with you the skill of importing Excel data.

2. Actual operation

1) First, you need to download a database management tool called Navicat for MySQL. You can download Navicat for MySQL from the following website. After downloading and installing, you can operate it;

2) I will use a CET-6 vocabulary list as an example to explain. A partial screenshot of the vocabulary list is as follows:

It contains vocabulary, translations and their mnemonics;

3) Use Navicat to create a new table named "english", and then enter the following interface:

4) Click "Import Wizard" directly, select the Excel file, and choose the format as .xls, as shown below:

5) Click Next directly, then you need to add the path of the Excel table and select the sheet where the content to be added is located, as shown below:

6) After clicking Next, you need to select "Field Name Row" and "First Data Row". These two parts should be operated according to the actual situation, as shown below:

7) Then click Next until you enter the following interface to view the correspondence between the target column and the original column, as shown below:

8) After confirming that the correspondence is correct, click Next, then select Add, then click Next again and click Start. After the import is completed, the prompt is as shown below:

9) After the operation is completed, open the English table in the MySQL database again to check whether the import is successful, as shown below:

3. Summary

In the following blogs, I will share a small word query program made with Java programming. At that time, the program will need to connect to the database and call the table. It can be said that it is just a preliminary task now. I hope everyone can learn how to import Excel into MySQL database.

You may also be interested in:
  • Detailed explanation of the process of importing excel data into the database using python
  • Java parses Excel files and stores data in the database
  • Python implements an example of exporting a database to an Excel table with one click
  • Pentaho tool imports and exports database data into Excel graphics and text steps

<<:  Detailed explanation of Linux environment variable configuration strategy

>>:  Detailed instructions for installing mysql5.7 database under centos7.2

Recommend

Use of Linux bzip2 command

1. Command Introduction bzip2 is used to compress...

30 free high-quality English ribbon fonts

30 free high-quality English ribbon fonts for down...

Introduction to HTML page source code layout_Powernode Java Academy

Introduction to HTML page source code layout This...

How to use jsx syntax correctly in vue

Table of contents Preface Virtual DOM What is Vir...

Detailed explanation of the use of MySQL mysqldump

1. Introduction to mysqldump mysqldump is a logic...

Example code for using text-align and margin: 0 auto to center in CSS

Use text-align, margin: 0 auto to center in CSS W...

The difference between html block-level tags and inline tags

1. Block-level element: refers to the ability to e...

Several common methods for passing additional parameters when submitting a form

When submitting a form, you may encounter situatio...

How to use css overflow: hidden (overflow hiding and clearing floats)

Overflow Hide It means hiding text or image infor...

js to achieve a simple magnifying glass effect

This article shares the specific code of js to ac...

Detailed explanation of JavaScript's built-in objects Math and strings

Table of contents Math Objects Common properties ...

js to implement verification code interference (static)

This article shares the specific code of js to im...

MySQL subqueries and grouped queries

Table of contents Overview Subqueries Subquery Cl...

Basic learning and experience sharing of MySQL transactions

A transaction is a logical group of operations. E...

CentOs7 64-bit MySQL 5.6.40 source code installation process

1. Install the dependency packages first to avoid...