

**sql映射文件**
#sql("insertStore")
INSERT INTO ybh_src_store
select t.id as STOREID,
t.name as SNAME,
t.m_dim1_id as lvlid1,
t.c_area_id as lvlid2,
t.C_DEPART_ID as lvlid3,
decode(t.m_dim1_id, 5776, '品牌一', 5777, '品牌二') as lname1,
a.name as lname2,
b.name as lname3,
SYSDATE as CREATIONDATE,
SYSDATE as MODIFIEDDATE
from C_STORE t, C_AREA a, C_DEPART b
where t.c_area_id = a.id
and t.c_depart_id = b.id
and t.m_dim1_id = 5777
and t.isactive = 'Y'
#end
在数据库里执行

结果是正常的
**但是java调用,**
Db.update(StoreList.dao.getSql("insertStore"));
decode(t.m_dim1_id, 5776, '品牌一', 5777, '品牌二') **lname1** 这一列乱码
如图
