MySQL資料表的CRUD(増 刪 改 查)操作

2021-07-04 05:30:15 字數 856 閱讀 5385

mysql資料表crud(増、刪、改、查)操作

1、増

①insert into 資料表名字 values(值);

②insert into 表名(欄位名,欄位名……)values(值,值……); 值須和欄位名形成一一對應關係。

2、刪

①delete from 表名;刪除所有資料

②delete from 表名 where 條件;帶條件的刪除

3、改

①update 表名 set 欄位名=值;更改所有資料

②update 表名 set 欄位名=值 where 條件;

4、查

①select * from 表名;查詢所有

②select 欄位名,欄位名… from 表名;指定字段

③select *|欄位名 from 表名 where 條件;按條件查詢

④select *|欄位名 from 表名[where 條件] order by 欄位名 asc(公升序)|desc(降序);按公升序或者降序檢視

⑤select *|欄位名 from 表名[where 條件] order by 欄位名 asc|desc,欄位名 asc|desc;主排序和副排序

⑥select *|欄位名 from 表名[where 條件] limit 數字;獲取前面幾條資料

⑦select *|欄位名 from 表名[where 條件] limit start,length;獲取指定開始位置到結束的資料。

以上僅為個人了解,如有遺漏或者錯誤,請指教。

Mysql資料表操作CRUD

一 建立資料表 1 建立表 create table student id int 11 not null auto increment,name varchar 20 not null,age int 11 not null,score double 4,1 not null,borthday d...

06 資料表的CRUD操作

語法 create table if not exists 資料表名稱 列名1 列型別1 長度 約束,列名2 列型別2 長度 約束,例項 create table if not exists user pk id int primary key auto increment,uk username ...

MySQL的資料表

mysql中主要使用到三種資料表 myisam innodb與heap。heap是儲存在記憶體中的資料表,如果計算機關閉或重啟或者mysqld程序崩潰,資料表就不存在,而且無法恢復了,但是其速度飛快。heap的限制也比較多,不允許使用 text和 blob資料型別,只允許使用 和 操作符來搜尋記錄 ...