首页 > 代码库 > 表结构更改后或新增加数据后同步到表中
表结构更改后或新增加数据后同步到表中
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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。