1. 程式人生 > 其它 >一致性hash和普通hash和hash槽

一致性hash和普通hash和hash槽

DML資料操作語言

用來對資料庫中表的資料記錄進行更新。(增刪改)

插入insert

-- insert into 表(列名1,列名2,列名3...) values (值1,值2,值3...):向表中插入某些列
insert into student(sid,name,gender,age,birth,address,score)
values (1001,'劉萍','',16,'2004-08-07','湖南嶽陽',100)

insert into student(sid,name,gender,age,birth,address,score) 
values 
(1002,'錢梅琳','',18,'2002-1-1
','湖北荊州',99), (1002,'王欣銘','',20,'2000-1-1','河北',98); --insert into 表名 values (值1,值2,值3): 向表中所有列插入資料; insert into student values (18,'郭琳娜','',25,'1999-11-11','湖北武漢',99.99) insert into student values (19,'莉莉','',22,'2000-1-1','上海',99.98), (20,'小戶','',18,'2003-1-1','北京',77);

更新update

-- 資料修改
update 表名 set 欄位名=值,欄位名=值...;
update 表名 set 欄位名=值,欄位名=值... where
條件;
--把所有學生的年齡改為18歲 update student set age=18; --把編號為18的學生的地址改為上海 update student set address="上海" where sid=18; --把id為18的學生的地址改為成都,成績修改為北京 update student set address="成都",score=100 where sid=18;

刪除delect

-- 資料刪除
-- delete from 表名(where 條件);
-- truncate (table) 表名;

-- 刪除sid為1004的學生資料
delete from student where
sid=1004; -- 刪除表所有的資料 delete from student; -- 清空表資料 truncate table student; truncate student;