1. 如何查看mysql的database
打開cmd,輸入mysql -u 用戶名 -p回車根據提示輸入密碼,
進入mysql資料庫控制台,
查看當前資料庫中存在那些資料庫,使用show databases語句。
使用show create database 資料庫名 格式來查看資料庫的詳細創建信息。
通過在show create database語句後面追加 \G參數來格式化輸出信息,便於查看。
2. 查看mysql資料庫
我也被這個問題困擾了,剛才看了flweb的回答得到啟發。感謝flweb!
進入命令行即cmd中,進入到安裝了mySql的路徑下,我的是
C:\Program Files\MySQL\MySQL Server 5.1\bin>
C:\Program Files\MySQL\MySQL Server 5.1\bin>mysql
ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: N
O)
直接輸入mysql得到錯誤提示,拒絕訪問。因為沒有輸入密碼。由此可以知道默認的用戶是ODBC。
C:\Program Files\MySQL\MySQL Server 5.1\bin>mysqlshow
mysqlshow: Access denied for user 'ODBC'@'localhost' (using password: NO)
直接輸入mysqlshow得到錯誤提示,拒絕訪問。因為沒有輸入密碼。
C:\Program Files\MySQL\MySQL Server 5.1\bin>mysqlshow -u root -p 123456
Enter password: ******
mysqlshow: Unknown database '123456'
mysqlshow的意思是顯示該用戶下的資料庫,-u 後跟用戶,-p表示要輸入密碼,但其後如果
有東西那麼表示的是資料庫的名稱而不是叫我們輸入密碼,密碼輸入執行這條指令後會提示
輸入密碼。
C:\Program Files\MySQL\MySQL Server 5.1\bin>mysqlshow -u root -p
Enter password: ******
+--------------------+
| Databases |
+--------------------+
| information_schema |
| mysql |
| test |
+--------------------+
上面就達到了我們的目的。
C:\Program Files\MySQL\MySQL Server 5.1\bin>mysqlshow -u root -p test
Enter password: ******
Database: test
+--------+
| Tables |
+--------+
+--------+
這條指令的功能是顯示test的資料庫的內容。
執行下面這條指令後就可以開始我們的mysql之旅了。
C:\Program Files\MySQL\MySQL Server 5.1\bin>mysql -u root -p
Enter password: ******
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 24
Server version: 5.1.50-community MySQL Community Server (GPL)
Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL v2 license
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> \h 顯示幫助
For information about MySQL procts and services, visit:
http://www.mysql.com/
For developer information, including the MySQL Reference Manual, visit:
http://dev.mysql.com/
To buy MySQL Enterprise support, training, or other procts, visit:
https://shop.mysql.com/
List of all MySQL commands:
Note that all text commands must be first on line and end with ';'
? (\?) Synonym for `help'.
clear (\c) Clear the current input statement.
connect (\r) Reconnect to the server. Optional arguments are db and host.
delimiter (\d) Set statement delimiter.
ego (\G) Send command to mysql server, display result vertically.
exit (\q) Exit mysql. Same as quit.
go (\g) Send command to mysql server.
help (\h) Display this help.
notee (\t) Don't write into outfile.
print (\p) Print current command.
prompt (\R) Change your mysql prompt.
quit (\q) Quit mysql.
rehash (\#) Rebuild completion hash.
source (\.) Execute an SQL script file. Takes a file name as an argument.
status (\s) Get status information from the server.
tee (\T) Set outfile [to_outfile]. Append everything into given outfile.
use (\u) Use another database. Takes database name as argument.
charset (\C) Switch to another charset. Might be needed for processing binlog
with multi-byte charsets.
warnings (\W) Show warnings after every statement.
nowarning (\w) Don't show warnings after every statement.
For server side help, type 'help contents'
mysql> \q 退出mysql
Bye
3. dos命令行怎麼查詢mysql資料庫
mysql數據的查詢是通過sql語句來實現的,常用的查詢操作如下:
1、連接資料庫
mysql -u 用戶名 -p 用戶密碼
說明:可以在命令中直接接入密碼,也可以不加入密碼。
4. 怎麼查看ubuntu mysql資料庫
1、列出當前用戶可查看的所有資料庫:SHOW DATABASES。
5. 外網如何訪問區域網內網的mysql資料庫
Mysql資料庫伺服器部署在內網環境,區域網內可以訪問mysql資料庫,內網也可以上外網。利用nat123如何實現外網訪問到內網mysql資料庫?下面是我跟大家分享的是外網如何訪問區域網內網的mysql資料庫,歡迎大家來閱讀學習。
外網如何訪問區域網內網的mysql資料庫
外網訪問內網的mysql資料庫的方法
首先要確保內網應用正常。明確內網mysql資料庫訪問地址,並確保mysql資料庫服務正常。如本地mysql資料庫訪問地址是localhost:3306。
6. 如何查看mysql資料庫用戶密碼
1、打開mysql.exe和mysqld.exe所在的文件夾,復制路徑地址
2、打開cmd命令提示符,轉到上一步中mysql.exe所在的文件夾。
3、輸入命令mysqld--skip-grant-tables回車,此時就跳過了mysql的用戶驗證。注意:輸入此命令後,無法操作命令行,您可以在此時打開一個新的命令行。注意:在輸入此命令之前,請在任務管理器中結束mysqld.exe進程,以確保MySQL伺服器端已完成運行
4、更改root密碼,輸入updateusersetpassword=password('123456')whereuser='root'andhost='localhost';
5、再次查看賬戶信息,selectuser,host,passwordfromuser;可以看到密碼已被修改。
6、退出命令行,重新啟動MySQL資料庫,然後嘗試使用新密碼登錄。
7. 如何查看mysql有什麼資料庫
查看mysql有什麼資料庫步驟如下:
1、點擊左下角開始菜單按鈕。
2、打開開始菜單。
3、在開始菜單下方搜索框中搜索cmd。
4、敲下回車鍵,打開cmd窗口。
5、輸入mysql
-u
root
-p命令,然後回車。
6、提示輸入密碼,輸入正確的密碼,進入mysql控制台。
7、輸入show
databases;命令,返回所有資料庫列表。