
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Run MySQL Statements in Batch Mode
We need to create a .sql file for running MySQL in batch mode. This file will contain the MySQL statements. Suppose I have hh.sql file in which I have written the statement select * from hh. With the help of the following command, we can run this file in batch mode −
Example
C:\Program Files\MySQL\bin>mysql -u root -p gaurav < hh.sql Enter password: *****
Output
id 1 2
Here Gaurav is the database name that contains the table hh. Whenever you’ll run this command it will ask for the password and then give the output.
Advertisements