九月六日 學習筆記 SQL語句(一)

2021-08-07 20:30:19 字數 1379 閱讀 2898

學習sql語句主要是對錶的操作,包括增insert,刪delete,改update,查select。其中又以select查詢最為多樣和複雜,下面將列舉這四種表操作的一

些例項來幫助學習。(在此筆記中使用persons為表名)

1、insert插入表資料

insert into 表名(列名1,列名2,...) values(列名1的值,列名2的值)

例:insert into persons(age,name,address,city) values(12,'張三','四川','德陽')

2、delete刪除表資料

delete from 表名 where 條件

例:delete from persons where id=4

3、update更新表資料

update 表名 set 列名=新值,列名=新值 where 條件

例:update persons set name='小李',addre

ss='重慶' where id=2

4、select查詢表資料

a.一般查詢(條件中使用=)

select * from 表名  查詢表中的所有內容  select * from persons

select * from 表名 where 條件1 and 條件2  查詢符合條件的行的所有資訊  select * from persons where id=1

select 列名1,列名2 from 表名 where 條件1,條件2  查詢符合條件的行的指定列資訊 select name,age from persons where id=1

b.模糊查詢(條件中使用like)

使用%與like搭配,%表示0個或者多個字元 select * from persons where city like '%陽'

使用_與like搭配,_表示乙個字元 select * frompersons where city like '_陽'

如果查詢的內容中包括%和_,有兩種方法,第一可以加入轉義字元\(

select * from persons where city like '\%%')

效果如下圖

第二種用escape自定義乙個關鍵字(select * from persons where city like '%x%%'escape 'x')

效果如下圖

八月六日 Linux作業系統學習筆記

fopen 可以指定開啟檔案的路徑和模式。函式原型 file fopen const char path,const char mode path 包含要開啟的檔案路徑及檔名 mode 檔案開啟方式 開啟方式引數如下 r或rb 開啟唯讀檔案,該檔案必須存在。r 或r b 開啟可讀寫的檔案,該檔案必須...

六月九日星期二學習報告

一.學習了父子類繼承關係中,訪問成員變數和成員方法,構造方法的規則,學習了重寫與過載的區別。筆記如下 在父子類的繼承關係當中,如果成員變數重名,則建立子類物件時,訪問有兩種方式 直接通過子類物件訪問成員變數 等號左邊是誰,就優先用誰,沒有則向上找間接通過成員方法訪問成員變數 該方法屬於誰,就優先用誰...

2023年九月第一周學習內容

usb轉ttl接線 stm32唯一id讀取 浮動清除注意事項 usb轉ttl接線 stm32唯一id讀取 include sys.h include usart.h include delay.h include key.h u32 get id 3 讀取id號,每次讀取32位 void getst...