91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

常用的MySQL命令有哪些

發布時間:2021-01-15 11:38:56 來源:億速云 閱讀:125 作者:小新 欄目:MySQL數據庫

這篇文章主要介紹常用的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命令有哪些”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

晴隆县| 司法| 象州县| 涡阳县| 晋中市| 汉沽区| 十堰市| 河东区| 乐山市| 迁西县| 卢氏县| 定日县| 勃利县| 宜章县| 道孚县| 峨山| 九台市| 浦城县| 河池市| 衡阳市| 金堂县| 宁南县| 梧州市| 贵阳市| 祁阳县| 平江县| 牡丹江市| 寿宁县| 读书| 共和县| 松潘县| 威海市| 康保县| 岳阳县| 乌拉特后旗| 南投县| 曲阜市| 龙井市| 富平县| 西贡区| 二连浩特市|