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;命令,返回所有数据库列表。