MySQL資料庫的增刪改查

2021-09-28 20:22:45 字數 817 閱讀 4127

資料庫基本的查詢語句:

select語句:

資料庫中通用,最基本的查詢語句

select id,username from `

test

`

基礎語法 select 接上要查詢的資料庫字段 再接上所屬資料庫,即是一條最基本的資料庫查詢語句(字段之間用逗號隔開,*即是查詢資料庫中欄位所有資訊)

where用法:

當我們要查詢資料庫中的字段資訊,但要找的字段又要符合一定的條件是就可以在select語句中加上where進行判斷:

select id,username from `

test

` where id=1

在select語句結尾接上所需要的條件即可查詢條件語句

可以使用and,or來進行多條件語句判斷

使用update更新資料庫字段資訊

update `

test

` set password=

'1231234' where username=

'123'

刪除資料庫字段

delete from test where username=

'123'

使用insert into新增資料庫字段

insert into `

test

` (id,username,password)values (

'5','555','12345'

)

MySQL資料庫增刪改查

注意 mysql中不區分大小寫 一 新增 新增資料到一張表中 語法 inser into 表名 列名 values 值列表 insert into students id,name values 16408100126 zzh 注意 新增資料時如果不寫欄位名,將會預設向所有欄位中新增值,確保所有no...

Mysql資料庫增刪改查

1.建立使用 使用資料庫 use work test 建立資料庫 create database work test create database ifnot exists work test character set gbk 建立表 create table dept id int prima...

MySQL資料庫 資料的增刪改查

資料的備份和恢復 資料的增刪改查 格式 insert into table name column name1,column name2,values value1,value2,insert into 表名 values 例 insert into students values 張三 18,上海...