Several methods to execute sql files under mysql command line

Several methods to execute sql files under mysql command line

To achieve the goal: Import the tsinfo180516.sql file into the database demo1 through the command line.

Rendering

The first method: When the MySQL database is not connected

Execute the sql file in the mysql command line

Run --cmd

C:\Users\lenovo>mysql -u account -p password -D database name < sql file absolute path

C:\Users\lenovo>mysql -uroot -proot -Ddemo1<C:\Users\lenovo\Desktop\tsinfo180516\tsinfo180516.sql

The second method: When the database is already connected, the command prompt is mysql>.

Enter the password to connect to the database

Practical record of importing SQL files using MySQL source command

Enter the full path of the source script or \. full path of the script

For example: source <C:\Users\lenovo\Desktop\tsinfo180516\tsinfo180516.sql

Or \. <C:\Users\lenovo\Desktop\tsinfo180516\tsinfo180516.sql

This concludes this article about several methods of executing SQL files under the MySQL command line. For more information about executing SQL files under the MySQL command line, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • mysql command line script execution example
  • Summary of several ways to execute SQL in the MySQL command line

<<:  Tutorial on installing nginx in Linux environment

>>:  Pure CSS to solve the ceiling and bottom suction in H5 layout implementation steps

Recommend

JavaScript gets the scroll bar position and slides the page to the anchor point

Preface This article records a problem I encounte...

Vue implements adding watermark effect to the page

Recently, when I was working on a project, I was ...

About Vue's 4 auxiliary functions of Vuex

Table of contents 1. Auxiliary functions 2. Examp...

Three ways to delete a table in MySQL (summary)

drop table Drop directly deletes table informatio...

jQuery treeview tree structure application

This article example shares the application code ...

Introduction to setting up Tomcat to start automatically on Linux system

1. Enter the /etc/init.d directory: cd /etc/init....

Disadvantages and reasonable use of MySQL database index

Table of contents Proper use of indexes 1. Disadv...

Vue defines private filters and basic usage

The methods and concepts of private filters and g...

Example usage of Linux compression file command zip

The ".zip" format is used to compress f...

Tips for adding favicon to a website: a small icon in front of the URL

The so-called favicon, which is the abbreviation o...

mysql uses stored procedures to implement tree node acquisition method

As shown in the figure: Table Data For such a tre...