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』;
語法:delete
from
表名
where
conition;
示例:
delete
from mysql.user
where password=』』;
1,單錶查詢
2,聯表查詢
EF操作mysql 資料庫記錄
1.vs2017連線mysql 資料庫前提 需要安裝 mysql connector odbc 8.0.12 winx64.msi mysql for visualstudio 1.2.8.msi mysql connector net 6.10.8.msi 且mysql connector net...
MySQL資料庫 表 記錄操作
建立表之前先選擇資料庫 use 某個資料庫 建立表 語法 create table 表名 欄位名 型別 長度 約束,欄位名 型別 長度 約束,欄位名 型別 長度 約束 表的檢視 檢視資料庫中有哪些表 show tables 檢視表結構 desc 表名 表的刪除 表的刪除 drop table 表名 ...
MYSQL資料庫常用操作記錄
修改字段型別 alter table tablename modify colname coltype 如 alter table user modify uname varchar 100 default null comment 使用者名稱 新增字段 alter table tablename ...