溫馨提示×

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

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

mysql有哪些常用的基本語(yǔ)句

發(fā)布時(shí)間:2020-05-29 17:23:03 來(lái)源:網(wǎng)絡(luò) 閱讀:210 作者:三月 欄目:數(shù)據(jù)庫(kù)

下文我給大家簡(jiǎn)單講講關(guān)于mysql有哪些常用的基本語(yǔ)句,大家之前了解過相關(guān)類似主題內(nèi)容嗎?感興趣的話就一起來(lái)看看這篇文章吧,相信看完mysql有哪些常用的基本語(yǔ)句對(duì)大家多少有點(diǎn)幫助吧。

create user shenge1@'192.168.200.%' identified by 'linwei'//創(chuàng)建一個(gè)用戶
grant all privileges on *.* to shenge1@'192.168.200.%' identified by 'linwei'//給此用戶賦權(quán)限.

flush privileges;

grant 權(quán)限 on 數(shù)據(jù)庫(kù)對(duì)象.表 to 用戶@ip identified by 密碼

權(quán)限:REPLICATION SLACE,REPLICATION CLIENT

數(shù)據(jù)庫(kù)對(duì)象:*.*(*.*說明數(shù)據(jù)庫(kù).表名)

用戶:shenge1 那個(gè)%號(hào)是通配符,表示用戶relp能在192.168.200.1~192.168.200.254所在的服務(wù)登錄密碼:linwei

mysql -ub -hwww.a.com -pb;可以直接登陸,用戶名為b,密碼為b,www.a.com為mysql云服務(wù)器地址


mysql -u shenge1 -h 192.168.200.157 --password=linwei  登陸或者-p手動(dòng)輸入密碼

mysql < 01.sql  =>在01.sql中寫好mysql語(yǔ)句,可以這樣執(zhí)行.

mysql -u shenge1 -h 192.168.200.157 --password=linwei < 01.sql

delete from mysql.user where User='shenge1'; 刪除某個(gè)用戶

show databases;顯示所有數(shù)據(jù)庫(kù)

show tables from mysql; 顯示mysql數(shù)據(jù)庫(kù)中的所有表名

create database student;建一個(gè)student數(shù)據(jù)庫(kù)

drop database student;刪除student數(shù)據(jù)庫(kù)

create table test.student(name char,math int);在數(shù)據(jù)庫(kù)test中創(chuàng)建student表格

drop table test.student;刪除test數(shù)據(jù)庫(kù)中的student表格

show columns from 表名或者describe 表名 查看表的結(jié)構(gòu)

insert into test.student(name,math)values('xiaoming',87);插入數(shù)據(jù)

alter table test.student drop name;刪除name這個(gè)字段.

alter table test.student add name  char(20);增加name這個(gè)字段

update test.student set name="xiaoming" where math=78;更新某個(gè)數(shù)據(jù)的值

大家覺得mysql有哪些常用的基本語(yǔ)句這篇文章怎么樣,是否有所收獲。如果想要了解更多相關(guān),可以繼續(xù)關(guān)注我們的行業(yè)資訊板塊。

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

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

AI