How To Run \"mysql\" Commands from a Batch File?

Answer

If you have group of "mysql" commands that need to be executed repeatedly, you can put them into a file, and run them from the file in "mysql" batch mode. Here is a batch file, templinks.sql, contains following commands:

USE wbtest;
INSERT INTO links VALUES (10, 'www.rnbold.com');
SELECT * FROM links;

To run this batch file, you need to follow this tutorial:

>cd mysqlbin
>mysql -u root < templinks.sql id name
1 www.rnbold.com
10 www.rnbold.com

All sql dba Questions

Ask your interview questions on sql-dba

Write Your comment or Questions if you want the answers on sql-dba from sql-dba Experts
Name* :
Email Id* :
Mob no* :
Question
Or
Comment* :
 





Disclimer: PCDS.CO.IN not responsible for any content, information, data or any feature of website. If you are using this website then its your own responsibility to understand the content of the website

--------- Tutorials ---