GROUP BY 如果為空值顯示為0

2021-10-09 21:35:47 字數 949 閱讀 4809

原**

select province,

count

(id)

from gutan_policy

where

(gas_source =

'稻田甲烷'

or gas_source like

'%,稻田甲烷'

or gas_source like

'%稻田甲烷,%'

or gas_source like

'%稻田甲烷,%'

修改後

select a.province,nvl(num,0)

from

(select

distinct province from gutan_policy

)aleft

join

(select province ,

count

(id)

as num from gutan_policy

where

(gas_source =

'稻田甲烷'

or gas_source like

'%,稻田甲烷'

or gas_source like

'%稻田甲烷,%'

or gas_source like

'%稻田甲烷,%'

mysql如果為空設定為0 MySQL相關2

一 mysql儲存引擎 mysql主要有以下幾種儲存引擎 開啟cmd執行mysql,輸入 show engines 來檢視 其中 1 innodb是預設的儲存引擎,支援事物 行鎖 外來鍵 2 myisam是mysql老版本的儲存引擎 3 blackhole儲存任何資料都會立即消失,相當於經過佇列 4...

JS判斷值是否為空

1 typeof用法 typeof的運算數未定義,返回的就是 undefined 運算數為數字 typeof x number 字串typeof x string 布林值typeof x boolean 物件,陣列 和null typeof x object 函式typeof x function ...

GridView繫結記錄為空顯示表頭

protected void btnquery click object sender,eventargs e if idcode.equals if flowindate.equals if matename.equals if mateidcode.equals if reportdate.eq...