重新查看当前有哪些数据库

angryTom
发布: 2019-10-24 10:17:19
原创
7817 人浏览过

重新查看当前有哪些数据库

重新查看当前有哪些数据库

首先打开cmd,输入net start mysql启动mysql服务,然后输入mysql -hlocalhost -uroot -p回车登录数据库,之后就可以输入命令了。

MySQL命令行有很多命令,其中查看有哪些数据库,我们可以使用show databases;命令进行查看,注意分号不要忘了。

如果在此之前你使用了use mysql; 语句,想再次查询当前有哪些数据库,仍然是使用show databases;命令,如果想跳到其他数据库可以使用use test; 进行切换,其中test为你想要切换的数据库名。

 推荐 《mysql视频教程》

在日常的网站维护和管理中,会用到非常多的SQL语句,熟练使用对网站管理有很多好处,尤其是站群管理的时候,以下为各位整理了命令行常用的MySQL命令,希望对各位有所帮助。

MySQL命令行下18个常用命令

1、显示数据库 

show databases
登录后复制

显示表

show tables;
登录后复制

2、创建用户
创建root用户密码为123

use mysql;
grant all on *.* to root@'%' identified by '123' with grant option;
commit;
登录后复制

3、修改密码

grant all on *.* to xing@'localhost' identified by '123456' with grant option;
update user set password = password('newpwd') where user = 'xing' and host='localhost';
flush privileges;
登录后复制

4、创建数据库testdb:

create database testdb;
登录后复制

5、预防性创建数据库:

create database if not testdb;
登录后复制

6、创建表:

use testdb;
create table table1(
username varchar(12),
password varchar(20));
登录后复制

7、预防性创建表aaa:

create table if not exists aaa(ss varchar(20));
登录后复制

8、查看表结构:

describe table1;
登录后复制

9、插入数据到表table1:

insert into table1(username,password) values
('leizhimin','lavasoft'),
('hellokitty','hahhahah');
commit;
登录后复制

10、查询表table1:

select * from table1;
登录后复制

11、更改数据:

update table1 set password='hehe' where username='hellokitty';
commit;
登录后复制

12、删除数据:

delete from table1 where username='hellokitty';
commit;
登录后复制

13、给表添加一列:

alter table table1 add column(
 sex varchar(2) comment '性别',
 age date not null comment '年龄'
);
commit;
登录后复制

14、修改表结构

从查询创建一个表table1:

create table tmp as
select * from table1;
登录后复制

15、删除表table1:

drop table if exists table1;
drop table if exists tmp;
登录后复制

16、备份数据库testdb

mysqldump -h 192.168.3.143 -u root -p pwd -x --default-character-set=gbk >C:\testdb.sql
登录后复制

17、删除数据库testdb

drop database testdb;
登录后复制

18、恢复testdb数据库
首先先建立testdb数据库,然后用下面命令进行本地恢复

mysql -u root -pleizhimin testdb <C:\testdb.sql
登录后复制

以上是重新查看当前有哪些数据库的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!