首页 > 其他 > 详细

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

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

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

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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!