问题是 将查询出来的数据通过存储过程再添加一遍(同一张表) 应该怎么写存储过程?
insert into one(a,b,c,d)
select (a,b,c,getdate())from one
d是时间字段
CREATE DEFINER=`root`@`localhost` PROCEDURE `test1`()
BEGIN
insert into `user`(name,sex,age,date_time)
select name,sex,age,current_timestamp from `user`;
END