Collections:
Running "mysql" Commands from a Batch File in MySQL
How To Run "mysql" Commands from a Batch File in MySQL?
✍: FYIcenter.com
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, \temp\links.sql, contains following commands:
USE test; INSERT INTO links VALUES (10, 'dba.fyicenter.com'); SELECT * FROM links;
To run this batch file, you need to follow this tutorial:
>cd \mysql\bin >mysql -u root < \temp\links.sql id name 1 dba.fyicenter.com 10 dba.fyicenter.com
⇒ Returning Query Output in HTML Format in MySQL
⇐ Getting Help Information from the Server in MySQL
2018-02-08, 3611🔥, 0💬
Popular Posts:
Where to find reference information and tutorials on MySQL database functions? I want to know how to...
How To Connect ASP Pages to Oracle Servers in Oracle? If you are running Windows IIS Web server and ...
How To Escape Special Characters in SQL statements in MySQL? There are a number of special character...
How To Drop an Index in Oracle? If you don't need an existing index any more, you should delete it w...
How to download and install Microsoft .NET Framework Version 2.0 in SQL Server? .NET Framework Versi...