增刪改字面意思

2022-07-03 02:39:10 字數 931 閱讀 7339

select

*from laugh;//

查詢整個表

##查詢 laugh 表中 id 為

1的這一行

select

*from laugh where id=

1;//

查詢單個

##暫時沒整明白,隨後更新

select a.*,b.aihao,b.fenshu from `laugh` as

ainner

join hobby as b where a.id=b.id;//

兩表聯查

##insert

into

增加進laugh裡面(name,age,fraction)的值 它的值必須對應每個字元

insert

into laugh(name,age,fraction) values("愛你","13",55.5);//增加

##修改 laugh 的表 放進去某個**相對應的值 通過id進行修改第幾行 本行id為8

update `laugh` set name="愛我",age=

14,fraction=

0.00

where id=

8;//修改

##刪除來自`laugh`**中id為8的呢一行 where的意思是在**

delete

from `laugh` where id=

8;//刪除

##查詢`laugh`**中的第幾行到第幾行然後按頁分布 limit限制的意思

select

*from `laugh` limit 0,3;//

分頁查詢

##查詢`laugh`**中某乙個相同的字顯示出來

select

*from `laugh` where name like "%笑%";//模糊查詢

mysql add attr mysql增刪改處理

首頁 代號姓名 性別民族 生日 db new mysqli localhost root mydb mysqli connect error or die 連線失敗!sql select from info result db query sql if result attr result fetc...

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

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

mysql增刪改查擴充套件 MySQL增刪改查

1 插入 insert 1 insert into 表名 values 值1 值2 例子 insert into t1 values zengsf 23 fengshao 22 2 insert into 表名 欄位1,values 值1 例子 insert into t1 name values ...