MySQL的資料型別和表的四種基本操作

2021-10-01 06:41:16 字數 1346 閱讀 8599

1.mysql型別:1.往表裡插入資料:

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

2.查詢資料:

select * from 表名;

(星號代表查詢所有的字段)

3.更改資料:

update 表名 set 欄位名=想要修改的值 where 條件表示式;

4.清除資料:

delete from 表名 where 條件表示式;

使用int關鍵字:

select * from 表名 where 欄位名 in (條件);

(可以有多少條件,用逗號隔開)

使用not int關鍵字:

select * from 表名 where 欄位名 not in (條件);

(查詢所不能滿足條件的資料,,可以有多少條件用逗號隔開)

帶between and的範圍查詢:

select */欄位名 from 表名 where 指定欄位的名字 between 值 and 值;

(注意:between and之間是全閉集合)

帶like的字元匹配查詢:

select */欄位名 from 表名 where 指定字段 like 想要匹配的值;

帶%和—_結合like的查詢:

(1)select */欄位名 from 表名 where 指定字段 like 想要匹配的值%;

(2)select */欄位名 from 表名 where 指定字段 like _想要匹配的值;

查詢空值:

select */欄位名 from 表名 where 指定字段 is null;

查詢非空值:

select */欄位名 from 表名 where 指定字段 is not null;

使用and實現多條件查詢:

select */欄位名 from 表名 where 條件表示式1=值1 and 條件表示式2=值2;

使用or實現多條件查詢:

select */欄位名 from 表名 where 條件表示式1 or 條件表示式2;

篩選重複的記錄:

select distinct 欄位名 from 表名;

資料型別檢測的四種方式

typeof 檢測資料型別的運算子 返回的都是乙個字串 型別 number string boolean undefined function object console.log typeof 12 console.log typeof 14 console.log typeof undefine...

判斷資料型別的四種方法

typeof typeof 一般用於判斷基本型別null除外,typeof也可以判斷function 但判斷array,error,null 這幾個引用型別時對會被typeof判斷為object,所以如果想判斷這幾種資料型別,就不能使用 typeof 了,比較有侷限性 instanceof inst...

js檢測資料型別的四種方式

js常見的資料型別分為兩種,第一種是基本資料型別 string number null undefined boolean symbol bigint 第二種是引用資料型別 object array regexp.常見的檢測資料型別方式 1 typeof 2 instanceof 3 constru...