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