mysql execute command 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"
Example 3: running external script mysql command
Copied shell> mysql db_name < text_file
Example 4: running external script mysql command
Copied mysql> source file_name
mysql> \. file_name