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' ;方法