我是靠谱客的博主 开朗小熊猫,最近开发中收集的这篇文章主要介绍【MySQL】MySQL存储过程从一张表查数据插入另一张表,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

测试表

CREATE TABLE `demo_test` (
  `ID` varchar(64) NOT NULL,
  `name` varchar(64) DEFAULT NULL,
  `age` varchar(64) DEFAULT NULL,
  PRIMARY KEY (`ID`),
  UNIQUE KEY `DEMO_TEST_ID_uindex` (`ID`)
);

CREATE TABLE `demo_test2` (
  `other_info` varchar(255) DEFAULT NULL
);

demo_test循环插入随机字符

-- 如果存在就删除
drop procedure if exists proc_insert;
create procedure proc_insert()
begin
    -- 定义变量
    DECLARE id VARCHAR(64);
    DECLARE name VARCHAR(64);
    DECLARE age VARCHAR(64);
    DECLARE i INT DEFAULT 1;
    -- 循环插入五条
    WHILE i <= 5
        DO
            SET id = SUBSTRING(MD5(RAND()), 1, 28);
            SET name = SUBSTRING(MD5(RAND()), 1, 5);
            SET age = SUBSTRING(MD5(RAND()), 1, 5);
            INSERT INTO demo_test
            VALUES (id, name, age);
            SET i = i + 1;
        END WHILE;
end;
-- 调用
call proc_insert();

常用函数

  • concat() 拼接字符串函数
  • rand() 生成随机数带小数点函数
  • floor() 取整函数
  • subString() 截取字符串函数

查询demo_testid数据,作为参数,循环插入demo_test2

drop procedure if exists proc_insert2;
create procedure proc_insert2()
begin
    declare var1 varchar(128);
    declare flag int default 0;
    --  定义一个游标来记录sql查询的结果
    declare s_list cursor for SELECT id FROM demo_test;
    --  循环结束标识
    declare continue handler for not found set flag = 1;
    --  打开游标
    open s_list;
    --  将游标中的值赋给定义好的变量
    fetch s_list into var1;
    while flag <> 1
        do
            INSERT INTO demo_test2 values (var1);
            --  游标往后移
            fetch s_list into var1;
        end while;
    --  关闭游标
    close s_list;
end;
-- 调用
call proc_insert2();

最后

以上就是开朗小熊猫为你收集整理的【MySQL】MySQL存储过程从一张表查数据插入另一张表的全部内容,希望文章能够帮你解决【MySQL】MySQL存储过程从一张表查数据插入另一张表所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(58)

评论列表共有 0 条评论

立即
投稿
返回
顶部