Linux下MySQL 增刪查改

2021-08-18 04:52:31 字數 636 閱讀 9306

insert into 表名 values (值1, 值2, …);

insert into 表名 (列名1, 列名2, … ) values (值1, 值2, …);

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

刪除指定資料:delete from 表名 where 條件;

改 更新所有資料:update 表名 set 列名=新值;

更新指定資料:update 表名 set 列名=新值 where 條件;

更新多列:update 表名 set 列名1=值1, 列名2=值2 [where 條件];

更新為預設值:update 表名 set 列名=default [where 條件];

查 查詢所有資料:select 列名 from 表名;

查詢指定資料:select 列名 from 表名 [where 條件];

查詢多個列:select 列名1, 列名2 from 表名 [where 條件];

查詢所有列:select * from 表名 [where 條件];

指定別名:select 列名 as 別名 from 表明 [where 條件];

查詢唯一值:select distinct 列名 from 表名;

MySQL 增刪查改

目錄2 insert 3 update 4 delete 5 更新和刪除的指導原則 此語句使用select語句檢索單個列。limit 5指示 mysql 返回不多於 5 行。select prod name from products limit 5,5 limit 5,5指示mysql返回從行 5...

MySQL 增刪查改

create table ceshi1 uid varchar 50 primary key,pwd varchar 50 name varchar 50 1.最後一列不寫逗號 2.多條語句一起執行 分號分開 3.符號 英文狀態 1.主鍵 primary key 2.非空 not null 3.自增...

mysql增刪查改

語法 insert into 表名 欄位名1,欄位名2,values 值1,值2,舉例 insert into student id,name,grade values 1,zhangshan 98 若不指定欄位名,則新增的值的順序應和字段在表中的順序完全一致。語法 insert into 表名 v...