第四章 select where過濾

2021-06-22 14:32:54 字數 622 閱讀 2664

假如有一張 學生表

select * from student 

列名 可以用別名 表名也可以用別名

select t.name as '名字' from student t

列可以做加減乘除 列也可以自定義常量列 

select t.score-1 ,5 as '五'from student t

(t.列名 必須這個表中存在這個列才會顯示否則報錯)

單詞:排序 order by降序 desc 公升序 asc   limit 限量

查詢前五名的同學的成績

select t.score from student t  order by desc limit 5 (如果有where 要加在order by 前面)

查詢成績為60,90,95的人

select score from student in (60,90,95)   (反之則not in)

查詢成績為空的人null

select t.score from student where score is null (反之則 is not)

between 指定兩個數之間的值(包含這兩個數)

注意:如果where後面有and和or 必須要先算and再算or

第四章 繼承

一 為什麼要繼承 在物件導向中我們將具有很多重複內容的類中的內容提取出來,寫成乙個單獨的類 其他類只需要繼承就能取得這些功能,同時可以在自己類中寫入獨特的自定義方法 二 繼承語法 inte ce circle nsobject 繼承是在介面中定義的 冒號後的類名是要整合的類,nsobject 是co...

第四章 物件

三個特性 身份 型別 值 每個物件都有唯一的身份來標識自己,使用內建函式id 得到。例子 usr bin env python coding utf 8 a 32 print a b a print id a id b 結果 d python27 python.exe e workp python ...

第四章 其他

sizeof和strlen 區別sizeof以位元組為單位給出資料的大小,strlen 函式以字元為單位給出字串的長度。使用strlen 函式要加 include標頭檔案。sizeof計算字元時會將標誌字串結束的不可見的空字元計算在內。定義符號常量 方法一 define name value 優點 ...