mysql資料操作: dml
在mysql管理軟體中,可以通過sql語句中的dml語言來實現資料的操作,包括
使用insert實現資料的插入
update實現資料的更新
使用delete實現資料的刪除
使用select查詢資料以及。
1. 插入完整資料(順序插入)語法一:
insert into 表名(欄位1,欄位2,欄位3…欄位n) values(值1,值2,值3…值n);
語法二:
insert into 表名 values (值1,值2,值3…值n);
2. 指定字段插入資料
語法:insert into 表名(欄位1,欄位2,欄位3…) values (值1,值2,值3…);
3. 插入多條記錄
語法:insert into 表名 values
(值1,值2,值3…值n),
(值1,值2,值3…值n),
(值1,值2,值3…值n);
4. 插入查詢結果
語法:insert into 表名(欄位1,欄位2,欄位3…欄位n)
select (欄位1,欄位2,欄位3…欄位n) from 表2
where …;
語法:update 表名 set
欄位1=值1,
欄位2=值2,
where condition;
示例: update mysql.user set password=password(『123』)
where user=』root』 and host=』localhost』;
語法:1.單錶查詢delete from 表名
where conition;
示例: delete from mysql.user
where password=』』;
練習: 更新mysql root使用者密碼為mysql123
刪除除從本地登入的root使用者以外的所有使用者
單錶查詢(
2.聯表查詢
多表查詢(
資料操作 增刪改查
select from 表名 例 查詢所有學生資料 select from students新增一行資料 格式一 所有字段設定值,值的順序與表中字段的順序對應 insert into 表名 values 例 插入乙個學生,設定所有欄位的資訊 insert into students values 0...
JQurey CRUD增刪改查操作
prepend 父元素將子元素追加到開頭 物件1.prepend 物件2 將物件2新增到物件1元秦內部,並且在開頭 prependto 物件1.prependto 物件2 將物件1新增到物件2內部,並且在開頭 after 新增元素到元素後邊 物件1.after 物件2 將物件2新增到物件1後邊。物件...
MySQL 增刪改查操作
toc 登入資料庫 mysql u root p123456 建立資料庫 creat database test 檢視所有資料庫 show databases 檢視資料庫中所有的資料表 show tables 選中資料庫 usedatabases 建立資料表 create table pet nam...