常用的MySQL命令有哪些

21次阅读
没有评论

共计 1558 个字符,预计需要花费 4 分钟才能阅读完成。

自动写代码机器人,免费开通

这篇文章主要介绍常用的 MySQL 命令有哪些,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

在日常的网站维护和管理中,会用到非常多的 SQL 语句,
熟练使用对网站管理有很多好处,尤其是站群管理的时候。

下面列一些常用的命令做备记。

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

这 18 个 MYSQL 命令都是管理员在日常维护中经常会用到的,熟练使用这些命令会使你的工作非

以上是“常用的 MySQL 命令有哪些”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注丸趣 TV 行业资讯频道!

向 AI 问一下细节

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-16发表,共计1558字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)