MySQL中對資料進行增刪改查

2021-09-28 20:24:49 字數 1012 閱讀 2204

新增資料

insert

into table_name ( field1, field2,..

.fieldn )

values

( value1, value2,..

.valuen )

;

如果要新增多條資料的話一定,乙個括號代表 一條,不要把多條資料寫在乙個括號裡。

insert

into table_name ( field1, field2,..

.fieldn )

values

( value1, value2,..

.valuen ),

( value1, value2,..

.valuen );

刪除資料

delete

from table_name [

where clause]

這裡clause是條件,就是你要刪除的那個資料的特點,必須唯一。比如id,name,個人比較推薦id。

更改資料

update table_name set field1=new-value1, field2=new-value2

[where clause]

這個就不過多介紹了。

查詢資料

select column_name,column_name

from table_name

[where clause]

[limit n]

[offset m]

中括號中的語句可以不寫,[limit n]這個是表示展示的資料數量,[ offset m]指的是偏移量,預設情況下偏移量為0,[where clause]這個就是條件,你要查詢的條件,用於精準查詢的。

對資料庫和表進行增刪改查

只是對資料庫和表的操作,並沒有操作表中的資料 1.c create 建立條件 語句建立資料庫 create database 資料庫名稱 建立資料庫,判斷不存在再建立 create database if not exists 資料庫名稱 建立資料庫,並指定字符集 create database 資...

用jsp對資料庫進行增刪改查

1 更消耗伺服器的資源,重定向則少佔一點資源 2 絕對路徑 寫了專案目錄,然後就相當於webcontent了,3 時間格式 yyyy mm dd hh mm ss 4 在登入處理頁面記錄乙個session,記錄你這個使用者的使用者名稱和密碼,放在登入處理頁面 5 處理頁面怎麼處理會比較好呢?6 jn...

mysql增刪改查效果 mysql增刪改查

檢視所有資料庫 mysql show databases 建立乙個庫ghd並指定字符集為utp8 mysql create database ghd charset utf8 檢視mysql支援的字符集 mysql show char set 建立乙個表,並設定id為主鍵 create table ...