MySQL server 5.7.20 installation and configuration method graphic tutorial

MySQL server 5.7.20 installation and configuration method graphic tutorial

This article records the installation and configuration methods of MySQL 5.7.20 and shares it with everyone

1. Download MySQL

First, go to the database's official website http://www.mysql.com to download MySQL.

The homepage after clicking in is as follows:

Then click downloads, community, and select MySQL Community Server. As shown below:

Scroll down, find Recommended Download, and click go to download page. As shown below:

Click download to enter the download page and select No thanks, just start my download to start downloading. Of course, if you want to register, you can also register.

2. Install MySQL

Open the installation package you just downloaded and start installing MySQL.

Select I accept and click Next to proceed to the next step.

Select Developer Default here, and then click Next to proceed to the next step.

This step is to check the installation conditions. Just click next to proceed to the next step.

Just click execute here, and click next to proceed to the next step after execution.

Continue to click next to proceed to the next step.

Select the first one and click Next to proceed to the next step.

Just click next here to proceed to the next step.

Set the root password and click Next.

Click Next to proceed to the next step.

Continue clicking next.

Click execute.

Click next.

Click finish.

Click next all the way and check your root password, MySQL is successfully installed on your computer.

After the installation is complete, enter the MySQL installation directory and enter MySQL Sever. The files in the directory are as follows:

The bin directory stores commonly used MySQL command tools and management tools; the data directory is the default place for MySQL to store data files and log files (I just installed it and there is no data folder yet); the docs directory contains MySQL help documents; the include directory and lib directory contain header files and library files that MySQL depends on; the share directory stores directory files and log files.

Enter the bin directory, hold down the shift key and right-click to choose to open a command window in the directory, or enter cmd in the address bar to enter the command window. Enter mysql -u root -p and press Enter. You will then be prompted to enter your password. After entering the password, you will enter the MySQL operation and management interface.

Enter show databases; ( note the semicolon at the end) to view the current MySQL database list, enter use test; to enter the test database (the prerequisite is that this database exists), enter show tables to view all tables in the test database, and enter quit to exit the MySQL operation management interface.

3. MySQL Basic Usage Tutorial (Using MySQLworkbench)

1. Create a database

You can use the Create Database button on the toolbar to create a database directly, as shown below:

Or use the command: create database database name; (note the semicolon at the end) to create it. Note that this method may not refresh immediately. You can right-click in the lower left corner and select Refresh all to refresh.

2. Create and delete tables

You can right-click on the Tables where you want to create the table and select Create Table, or use the command create table table_name(column_name column_type);

Note that you need to use the use command before the command to create the data table to specify the database you want to use. (You can right-click on the database you are going to use and select Set as Default Schema to make the database you are going to use the default, so you don’t need to write a use statement)
Use the command drop table table_name; to delete a table.

3. Modify the name of the table

Change the table name by using the command: alter table old_name rename to new_name or rename table old_name to new_name.

4. Add, modify, and delete fields for the data table

Use the alter table table_name add column_name column_type; statement to add fields to the data table.
Use the alter table table_name change column_name new_column_name new_column_name_type; statement to modify the data table field name.
Use the command alter table table_name drop column_name; to delete the data table fields.

5. About changing the database name

In earlier versions of MySQL, a command called rename was provided to change the name of the database (note that it is not the database table). However, this command will cause data loss, so this command has been deleted. Now if you want to rename a database, you need to export all the data in the original database first, then create a new database, then import the exported data into the new database, and finally delete the original database. The whole process is rather cumbersome and very time-consuming when the amount of data is large, so it is not recommended to change the name of the database. Therefore, when naming the database, you should consider giving the database a reasonable name.

6. Extension: Pycharm operates MySQL

Open pycharm, follow the instructions on the picture, click the green "+" and select MySQL,

Then set the name and connect to the database as root. After the test connection is successful, click Apply.

The effect after connection is as shown in the figure below. After setting up, you can write MySQL commands in pycharm. Similarly, Java IDEA can also be set up.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • MySQL 5.7.27 winx64 installation and configuration method graphic tutorial
  • MySQL 5.7.27 installation and configuration method graphic tutorial
  • Win32 MySQL 5.7.27 installation and configuration method graphic tutorial
  • MySQL 5.7.27 installation and configuration method graphic tutorial
  • MySql 5.7.20 installation and configuration of data and my.ini files
  • Detailed steps to install MySql 5.7.21 in Linux
  • Detailed tutorial for installing mysql5.7.21 under Windows system
  • MySQL 5.7.20 Green Edition Installation Detailed Graphic Tutorial
  • MySQL 5.7.20 installation and configuration method graphic tutorial under Windows
  • MySQL 5.7.25 installation and configuration method graphic tutorial

<<:  Docker deploys mysql to achieve remote connection sample code

>>:  Nodejs implements intranet penetration service

Recommend

Vue implements sample code to disable browser from remembering password function

Find information Some methods found on the Intern...

MySQL and MySQL Workbench Installation Tutorial under Ubuntu

Ubuntu install jdk: [link] Install Eclipse on Ubu...

How to change the encoding of MySQL database to utf8mb4

The utf8mb4 encoding is a superset of the utf8 en...

Nginx merges request connections and speeds up website access examples

Preface As one of the best web servers in the wor...

Windows10 mysql 8.0.12 non-installation version configuration startup method

This article shares the specific steps for config...

Solution to the automatic stop of MySQL service

This article mainly introduces the solution to th...

Examples of using && and || operators in javascript

Table of contents Preface && Operator || ...

Complete steps for vue dynamic binding icons

0 Differences between icons and images Icons are ...

Discussion on image path issues in css (same package/different package)

In CSS files, sometimes you need to use background...

Detailed explanation of the failure of MySQL to use UNION to connect two queries

Overview UNION The connection data set keyword ca...

How to connect Django 2.2 to MySQL database

1. The error information reported when running th...

Small paging design

Let our users choose whether to move forward or ba...

MySQL Series II Multi-Instance Configuration

Tutorial Series MySQL series: Basic concepts of M...

Vue template compilation details

Table of contents 1. parse 1.1 Rules for intercep...

PHP scheduled backup MySQL and mysqldump syntax parameters detailed

First, let's introduce several common operati...