Can we run a mysql query through command prompt in

2019-04-23 15:20发布

Can we run MySQL query from windows command prompt? If so, how can we do that and process the query result through command prompt?

5条回答
淡お忘
2楼-- · 2019-04-23 15:34

Try to use mysql — the MySQL command-line tool with '--execute=statement' or '-e statement' option.

查看更多
闹够了就滚
3楼-- · 2019-04-23 15:38

Try this on Windows:

  • Open window console Run CMD
  • type/copy: mysql -h hostname -u UserName -pPassWordTogether dbNAme -e"select * from table;" > D:/file.csv
  • Easy and fast.

Good Luck.

查看更多
Luminary・发光体
4楼-- · 2019-04-23 15:43
Yes, We can access whole DB from command line.  
1. Connect to DB (no space between -p and password)
    mysql -h <host> -u <username> -p<password>
2. Now we can check how many db we have
   show databases;
or many more commands and even we can execute quires through command line. For more command details http://g2pc1.bu.edu/~qzpeng/manual/MySQL%20Commands.htm
查看更多
Emotional °昔
5楼-- · 2019-04-23 15:52

You can install the MySQL client for windows and then use that for sending commands to a server.

http://dev.mysql.com/doc/refman/5.0/en/mysql.html

You can use the following type of format for commands

mysql db_name < script.sql > output.tab

or

shell> mysql --user=user_name --password=your_password db_name

Then type an SQL statement, end it with “;”, \g, or \G and press Enter.

查看更多
叼着烟拽天下
6楼-- · 2019-04-23 16:00

practical example of @devarts recommendation enter your user & password & Database

mysql -uUSER -pPASSWORD  -e 'SHOW DATABASES;' -- list databases

mysql -uUSER -pPASSWORD  MyDATABASE -e 'SHOW TABLES;' -- list tables in MyDATABASE
查看更多
登录 后发表回答