明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

mysql的基本命令介紹

[摘要]本篇文章給大家?guī)?lái)的內(nèi)容是關(guān)于mysql的基本命令介紹,有一定的參考價(jià)值,有需要的朋友可以參考一下,希望對(duì)你有所幫助。前端狗初學(xué)MySQL,記錄一下1、用戶登錄:mysql -uroot -p2、查...
本篇文章給大家?guī)?lái)的內(nèi)容是關(guān)于mysql的基本命令介紹,有一定的參考價(jià)值,有需要的朋友可以參考一下,希望對(duì)你有所幫助。

前端狗初學(xué)MySQL,記錄一下
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的基本命令介紹的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!


學(xué)習(xí)教程快速掌握從入門到精通的SQL知識(shí)。




標(biāo)簽:mysql的基本命令介紹