DML之SQL增刪改查

2021-08-26 12:38:23 字數 1233 閱讀 8441

dml:資料操作語言

適用物件:表中的資料

功能

1、向表中新增資料

mysql>insert into goods(id,name,price,type) values(2,』褲子』,100,』服裝』);

注意:如果我們新增資料時,每一列的值都不為空的話,我們可以省去列,**如下:

mysql>insert into goods values(2,』褲子』,100,』服裝』);

2、查詢表中的資料的記錄(基礎用法)

mysql>select * from goods;

3、更新表中資料

更新users表中age列的值為20

mysql>updata users set age =20;

更新users表中name列為趙四的使用者其年齡列為20

mysql>update users set age=25 where name=』趙四』;

更新users表中id為4的使用者其年齡和姓名分別為15,王五

mysql>update users set age=15,name=』王五』 where id=4;

注意:在sql語句中,字串用單引號包裹起來

4、查詢users表中的資料記錄

mysql>select * from users;

5、刪除表

刪除user表,表中的資料結構都會被刪除掉

mysql>drop table user;

刪除user表中的資料

mysql>delete from user;

刪除user表中id為2的那一行記錄

mysql>delete from user where id=2

DML(增刪改查)

在實際專案中,使用最多的是讀取操作,但是插入資料和刪除資料同等重要,而修改操作相對較少 插入操作 元組值的插入 查詢結果的插入 最基本的插入方式 insert into tablename values val1,val2,如果表名之後沒有列,那麼只能將所有的列都插入 insert into tab...

SQL 增刪改查

之前大致了解過,現在用 mysql 的還是居於多數,而且自己之後也有意嚮往大前端發展,所以就需要撿起以前的 sql,也希望將來有機會用 node.js mysql 做大型專案的機會。因此,就從簡單的 sql 的增刪改查開始大前端之路。開發中最常見的就是 select 查詢。簡單的查詢,看起來是這樣的...

SQL增刪改查

1 增 insert into table name values value1,value2,insert into table name 列1,列2,values 值1,值2,2 刪 delete from table name where 列名稱 值 3 改 update table name...