|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册账号
×
会计科目修改
2.1
--更新数据库中会计科目编码
select * from bd_accsubj where subjcode='122101970101'
update bd_accsubj set subjcode='122101970201' where subjcode='122101970101'
update bd_accsubj set subjcode='122101970202' where subjcode='122101970102'
2.2末级标识更正
--查询出某个会计科目是否为末级
select endflag from bd_accsubj where subjcode='1221019702'
--把相应的会计科目设为是否末级
update bd_accsubj set endflag='N' WHERE subjcode='1221019702'
2.3
--更改相应的会计科目的相应的开始年和创建年,针对在较晚年度创建分配,之前年度调账时选择不到。
update bd_accsubj set beginyear='2009',createyear='2009' where beginyear='2010' |
|