Home > Database > Mysql Tutorial > How can we run MySQL statements in batch mode?

How can we run MySQL statements in batch mode?

王林
Release: 2023-09-06 16:37:09
forward
1416 people have browsed it

How can we run MySQL statements in batch mode?

We need to create a .sql file for running MySQL in batch mode. This file will contain MySQL statements. Suppose I have a hh.sql file in which I wrote a select * from hh statement. We can run this file in batch mode with the help of the following command −

Example

C:\Program Files\MySQL\bin>mysql -u root -p gaurav < hh.sql
Enter password: *****
Copy after login

Output

id
1
2
Copy after login

Here Gaurav is the database containing table hh name. Whenever you run this command, it will ask for the password and then give the output.

The above is the detailed content of How can we run MySQL statements in batch mode?. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template