溫馨提示×

溫馨提示×

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

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

Mysql試題

發(fā)布時間:2020-07-10 12:34:08 來源:網(wǎng)絡(luò) 閱讀:546 作者:誰誰誰誰誰 欄目:數(shù)據(jù)庫

1.登陸MySQL數(shù)據(jù)庫。

mysql -uroot -poldboy123


2.查看當(dāng)前登錄的用戶。

select user();


3.創(chuàng)建數(shù)據(jù)庫oldboy,并查看已建庫完整語句。

create database oldboy;

show databases;

show create database oldboy;


4.創(chuàng)建用戶oldboy,使之可以管理數(shù)據(jù)庫oldboy。

create user oldboy@'localhost' identified by 'oldboy123';

grant all on oldboy.* to oldboy@'localhost';


grant all on oldboy.* to oldboy@'localhost' identified by oldboy123;


5.查看創(chuàng)建的用戶oldboy擁有哪些權(quán)限。

show grants for oldboy@'localhost';


5.查看當(dāng)前數(shù)據(jù)庫里有哪些用戶。

select user,host from mysql.user;


6.進(jìn)入oldboy數(shù)據(jù)庫。

use oldboy


7.查看當(dāng)前所在的數(shù)據(jù)庫。

select database();


8.創(chuàng)建一張表test,字段id和name varchar(16)。

create table test( id int(4) not null , name varchar(16) not null);


9.查看建表結(jié)構(gòu)及表結(jié)構(gòu)的SQL語句。

desc test;

show columns from test;

show full columns from test;


10.插入一條數(shù)據(jù)“1,oldboy”

insert into test(id,name) values(1,'oldboy');

select * from test;


11.再批量插入2行數(shù)據(jù) “2,老男孩”,“3,oldboyedu”。

insert into test(id,name) values(2,'老男孩'),(3,'oldboyedu');

select * from test;


12.查詢名字為oldboy的記錄。

select * from test where name='oldboy';

select * from test where name like '%old%'; (模糊查找)


13.把數(shù)據(jù)id等于1的名字oldboy更改為oldgirl。

update test set name='oldgirl' where id=1;

select * from test;


14.在字段name前插入age字段,類型tinyint(2)。

alter table test add age tinyint(2) after id;

desc test;


15.不退出數(shù)據(jù)庫備份oldboy數(shù)據(jù)庫。

system mysqldump -uroot -poldboy123 -B oldboy > /opt/oldboy1.sql;


16.刪除test表中的所有數(shù)據(jù),并查看。

delete  from test;    法一

truncate test;        法二

select * from test;   查看


17.刪除表test和oldboy數(shù)據(jù)庫并查看

表:

show tables ;

drop table test;

庫:

drop database oldboy;

show databases;


18.不退出數(shù)據(jù)庫恢復(fù)以上刪除的數(shù)據(jù)。

source /opt/oldboy1.sql


19.在把id列設(shè)置為主鍵,在Name字段上創(chuàng)建普通索引(提高搜索效率)。

主鍵:

create table test (

id int(4) not null ,                                      -- 自增ID

name char(16) not null,

primary key (id) );

普通鍵:

alter table test add index intex_name(name);



20.在字段name后插入手機(jī)號字段(shouji),類型char(11)。

alter table test add shouji char(11) after name;

desc test;


21.所有字段上插入2條記錄(自行設(shè)定數(shù)據(jù))

insert into test(id,name,shouji) values(1,'aige','13555555'),(2,'oldboy','1388888888');

insert into test(id,name,shouji) values(3,'oldboy','135555555');

select * from test;


22.刪除Name列的索引。

drop index intex_name on test;


23.查詢手機(jī)號以135開頭的,名字為oldboy的記錄(提前插入)。

select * from test  where shouji like '135%' and name like 'oldboy';


24.收回oldboy用戶的select權(quán)限。

revoke select on oldboy.* from oldboy@'localhost';

show grants for oldboy@'localhost';  查看


shell終端執(zhí)行  使用-e參數(shù)調(diào)用mysql內(nèi)部命令

mysql -uroot -poldboy123 -e "show grants for root@'localhost'" | grep -i select


25.刪除oldboy用戶。

select user,host from mysql.user;

drop user oldboy@'localhost';

select user,host from mysql.user;


26.刪除oldboy數(shù)據(jù)庫。

drop database oldboy;


27.使用mysqladmin關(guān)閉數(shù)據(jù)庫。

mysqladmin -uroot -poldboy123 shutdown

ps -ef | grep mysql


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI