run a mysql script from command line code example
Example 1: mysql cmd command to run
mysql.exe –uroot –p
Example 2: execute mysql file
mysql -u yourusername -p yourpassword yourdatabase < text_file
Example 3: mysql execute command from command line
mysql -u <user> -p -e "select * from schema.table"