當前位置:首頁 » 數據倉庫 » 資料庫返回空字元串如何判斷值
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

資料庫返回空字元串如何判斷值

發布時間: 2023-06-03 23:36:30

1. SQL中如何判斷欄位NULL或者為空字元串

select case when a is null then b when a='' then b else a end from 表 create table test
(
a varchar(20),
b varchar(10)
)
insert into test (b) values('b')
insert into test (a,b) values('','b')
insert into test(a,b) values ('a','b')
select case when a is null then b when a='' then b else a end from test
復制代碼 ,粘貼,執行,直接可以看到結果

2. db2資料庫中,查詢數據時判斷查詢欄位是否為空或空字元串,如果是就查

select * from table_name
where column_name is null
or column_name = ''

3. 怎麼判斷資料庫的某個欄位值為空

where 欄位 is null 是判斷為null的
where 欄位=''是判斷為空