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, emplinks.sql, contains following commands:USE test;INSERT INTO links VALUES (10, 'www.GlobalGuideLine.com');SELECT * FROM links;To run this batch file, you need to follow this tutorial:>cd mysql in>mysql -u root < emplinks.sqlid name1 www.GlobalGuideLine.com10 www.GlobalGuideLine.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, emplinks.sql, contains following commands:USE test;INSERT INTO links VALUES (10, 'www.GlobalGuideLine.com');SELECT * FROM links;To run this batch file, you need to follow this tutorial:>cd mysql in>mysql -u root < emplinks.sqlid name1 www.GlobalGuideLine.com10 www.GlobalGuideLine.com
Comments Received:
Please give your suggestions and feedback: