使用命令行执行MySQL存储过程

使用命令行执行MySQL存储过程

本文介绍了使用命令行执行MySQL存储过程的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

请帮助我在命令行中执行MySQL存储过程,该过程包含条件语句.

Please help me out to execute a MySQL Stored procedure in command line, where the procedure contains conditional statements..

推荐答案

$ mysql --user=user_name --password=your_password db_name

mysql> call stored_procedure_name();

$ mysql --user=user_name --password=your_password db_name < script.sql

其中script.sql包含您的sql语句:

where script.sql contains your sql statement:

call stored_procedure_name();

这篇关于使用命令行执行MySQL存储过程的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 04:26