码迷,mamicode.com
首页 > 其他好文 > 详细

表结构更改后或新增加数据后同步到表中

时间:2014-08-14 20:03:39      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:io   数据   ar   cti   app   on   sp   har   

select ‘insert into mtx_system_module(module_id,module_code,module_name,module_note,create_date,version)values(‘
+cast(moduleid as varchar(10))+‘,‘‘‘+ObjectID+‘‘‘,‘‘‘+Name+‘‘‘,‘‘‘+isnull(Note,‘‘)+‘‘‘,NOW(),1);‘ from AppModules
 where subsystem=1 and ParentModuleID is not null
 
 -----------------------------------------------
select ‘insert into mtx_app_module(module_id,parent_module_id,version)values(‘
+cast(moduleid as varchar(10))+‘,‘+
case ParentModuleID when 1 then ‘NULL‘ else cast(ParentModuleID as varchar(10)) end
+‘,1);‘ from AppModules
 where subsystem=1 and ParentModuleID is not null
 
 ----
 select * 
 from AppModules
 where subsystem=1 and ParentModuleID is not null

表结构更改后或新增加数据后同步到表中,布布扣,bubuko.com

表结构更改后或新增加数据后同步到表中

标签:io   数据   ar   cti   app   on   sp   har   

原文地址:http://www.cnblogs.com/mmnyjq/p/3912985.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!