oracle問題:char類型數據查詢不到

select distinct id,name from test_table b where b.ID='001' ;table

id爲char字段類型,使用該語句查詢不出數據。test

解決方法:加trim()。改成:select

select distinct id,name from test_table b where trim(b.ID)='001' ;方法

相關文章
相關標籤/搜索