首先我們建立一張使用者表
--建立表create
table
user
( id
intprimary
keyauto_increment,
name
varchar(10
), age
tinyint
)charset utf8 comment
'使用者表
';
然後往表裡插入資料
--插入資料
insert
into
user(id,name,age)value(2,'
chris
',21
);
--或可以這麼寫
insert
into
user value (1,'
jamal
',18
);
--也可以批量插入
insert
into
user
values(3,'
durant
',30
), (
4,'wall
',21);
刪除表中的某一行資料
--刪除表中的id為1資料
delete
from
user
where id =1;
--刪除表中name為durant的資料
delete
from
user
where name =
'durant';
--刪除表中age為21的資料
delete
from
user
where age =
21;
更新表中的某一行資料
--更新表中id為2,名字改為yongjar
update
user
set name =
'yongjar
'where id =2;
--更新表中名字為wall,年齡改為31
update
user
set age =
21where name =
'wall
';
mysql之增刪改查基本語句操作
第一次熬夜加班 凌晨還在加的那種 難受,今年最後一篇,明年繼續,分享是美德,記錄是成長 mysql是一種關係型資料庫管理系統,屬於我們常見的資料庫之一。在我們進行資料增刪改查操作之前,我們需要登入資料庫或者建立乙個庫和表,才能進行相應的操作 登入資料庫,可通過相應的工具進行視覺化連線登入,或者語句登...
mysql基本操作 增刪改查
增加 insertinsert into 表名 欄位1,欄位2,values 值1,值2,insert into students class id,name,gender,score values 2,張三 m 80 3,大寶 f 90 可以一次新增一條,也可以一次新增多條,每條記錄都是由 包含的...
五 MySql基礎之表增刪改操作
單行插入 可以全部字段插入,也可以部分字段插入 insert into 表名 欄位名 values 字段值 多行插入 insert into 表名 欄位名 values 字段值 字段值 當插入全部欄位值時,欄位名可以省略 欄位為自動增加時,或者設定了預設值值時,可以不插入值 字段值和欄位名順序和個數...