溫馨提示×

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

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

mysql有哪些經(jīng)常用到的基本命令

發(fā)布時(shí)間:2020-05-29 16:49:59 來源:PHP中文網(wǎng) 閱讀:213 作者:三月 欄目:MySQL數(shù)據(jù)庫(kù)

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

                                                           

1、用戶登錄:

mysql -uroot -p

2、查看數(shù)據(jù)庫(kù):

show databases;

3、創(chuàng)建數(shù)據(jù)庫(kù):

create database firstsql;

4、進(jìn)入數(shù)據(jù)庫(kù):

use firstsql

5、查看數(shù)據(jù)庫(kù)中的所有表:

show tables;

6、創(chuàng)建表:

create table student(
  ID char(7) primary key,
  NAME varchar(20) not null,
  Age varchar(20) default '10'
)comment='信息';

設(shè)置ID作為主鍵,NAME的值不能為空,Age 的默認(rèn)值是10,備注為信息。
7、查看表結(jié)構(gòu)

desc firstsql.student;

8、查看表格創(chuàng)建信息

show create table student;

9、查看表數(shù)據(jù)

select * from student;
select ID,NAME,Age from Student;
select * from Student where ID='001';

10、插入數(shù)據(jù)

insert into student values ('001','二哈','計(jì)算機(jī)');

11、刪除數(shù)據(jù)

delete from student;
delete from student where ID='001';

12、修改數(shù)據(jù)

update student set NAME='物聯(lián)網(wǎng)' where ID='001';

大家覺得mysql有哪些經(jīng)常用到的基本命令這篇文章怎么樣,是否有所收獲。如果想要了解更多相關(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