码迷,mamicode.com
首页 > 数据库 > 详细

Mysql 触发器 A表记录到B表

时间:2017-09-21 13:46:35      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:inf   stat   status   字符   png   image   from   where   navicat   

1:查询出需要的列名 备用

#列名
select COLUMN_NAME from information_schema.columns
where TABLE_SCHEMA=‘yunpiaobox_db‘ and table_name=‘t_box_status‘

 

TABLE_SCHEMA: 数据库名称    table_name:表名


#列名字符串 按,分隔
select
GROUP_CONCAT(COLUMN_NAME separator ‘,‘) ‘逗号分隔‘,
GROUP_CONCAT(CONCAT(‘NEW.‘, COLUMN_NAME) separator ‘,‘) ‘NEW.字段 逗号分隔‘,
GROUP_CONCAT(CONCAT(COLUMN_NAME, ‘=NEW.‘, COLUMN_NAME) separator ‘,‘) ‘字段=NEW.字段 逗号分隔‘
from information_schema.columns
where TABLE_SCHEMA=‘yunpiaobox_db‘ and table_name=‘t_box_status‘

 

2:工具Navicat Premium 右击A表  ---> 设计表 --->  选择触发器

技术分享

 

Mysql 触发器 A表记录到B表

标签:inf   stat   status   字符   png   image   from   where   navicat   

原文地址:http://www.cnblogs.com/eason-d/p/7567473.html

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