1.oracle中null資料的計算
select
count(*
)from pier.testxhh t where t.name !=
'a';
//結果 0
select
count(*
)from pier.testxhh t where t.name =
'a';
// 結果 1
select
count(*
)from pier.testxhh t where t.age >-1
;//結果2
select
count(*
)from pier.testxhh t where t.age >=0;
//結果2
在使用 '=『或者』!=『時,null的資料都不計算在內。
在有』>『或者』
所以,在查詢時如果where後面有關係符,結果都是不包含null資料的,null資料是完全忽略的。
TypeScript踩坑(持續更新)
很多第三方庫已經有自己的型別宣告檔案,比如 types react,types react native,這些需要單獨安裝,而例如mobx react和mobx這種會自帶型別檔案,不需要單獨安裝。我們最近有個新專案,需要照顧到不同同學,有的願意用ts,有的不想用ts,為了照顧到雙方,所有的公共模組都...
踩過的坑,持續更新
1 top竟然是dom中的保留字,和window乙個型別的東西,當初還很2b的設定var top 2 innerhtml的問題,在xhtml中要求符合標準格式才能成功,比如我遇到的是在乙個p元素中,再插入p就是非法的。還要注意ie下面的某些元素唯讀,如等。3 偷懶用var a b c null 會怎...
python踩的坑(持續更新)
使用threadpoolexecutor執行緒池,並使用submit提交呼叫函式 開始呼叫寫法 from concurrent.futures import threadpoolexecutor from concurrent import futures pool threadpoolexecut...