Mysql分表存储过程(指定两个时间段内每个月生成一张表)

-- 删除存储过程 create_tables
drop procedure if exists create_tables;

-- 创建存储过程
delimiter //
create procedure create_tables(table_name_suffix varchar(32), start_month int, end_month int)
begin
declare current_month int;
declare end_of_cycle int;
-- 初始化变量
set current_month = start_month;
set end_of_cycle = end_month;
-- 循环创建表
while current_month <= end_of_cycle do
set @table_name = concat(table_name_suffix, current_month);
set @sql = concat('
create table ', @table_name, ' (
				id bigint not null auto_increment comment ''自增编号'',
				operation_id bigint not null comment ''操作id'',
				user_name varchar(32) not null comment ''商城账号'',
				wallet_address varchar(64) not null comment ''钱包地址'',
				ip_address varchar(128) not null comment ''ip地址'',
				login_address varchar(64) not null comment ''登录地点(xx省 xx市)'',
				browser varchar(32) not null comment ''浏览器'',
				operation_system varchar(64) not null comment ''操作系统'',
				operation_program tinyint not null comment ''操作程序0钱包后台1商城后台2商家后台3钱包系统4退换货中心5盟非店铺6数字商业公社'',
				operation_function varchar(256) not null comment ''操作功能名称'',
				operation_status tinyint not null comment ''操作状态0成功1失败'',
				content varchar(1024) not null comment ''用户操作内容(xx人物-xx时间-xx地点-xx事件)'',
				req_param varchar(4096) not null comment ''请求参数'',
				source tinyint not null comment ''数据来源1后端2前端'',
				cdate bigint not null comment ''操作时间'',
				primary key (id),
				index index_operation_id (operation_id),
				index index_user_name (user_name),
				index index_operation_program (operation_program),
				index index_wallet_address (wallet_address)
		) engine = innodb
			row_format = compressed
			default charset = utf8mb4
			comment = ''操作日志'';
		');
prepare stmt from @sql;
execute stmt;
deallocate prepare stmt;
-- 增加月份
if month(current_month * 100 + 1) = 12 then
set current_month = (year(current_month * 100 + 1) + 1) * 100 + 1;
else
set current_month = current_month + 1;
end if;
end while;
end //
delimiter ;

-- 调用存储过程创建表
call create_tables('operation_log_', 202407, 202612);

-- 再次删除存储过程 create_tables
drop procedure if exists create_tables;
MySQL中,存储过程是一组为了完成特定功能的SQL语句集,它可以存储在数据库中供以后调用。如果需要在存储过程中实现两张分表的关联查询,可以按照以下步骤操作: 1. 创建存储过程:首先,你需要定义存储过程的开始和结束。 2. 声明变量:如果需要在存储过程使用变量,比如用于拼接查询语句或者存储查询结果,你可以声明这些变量。 3. 构建查询语句:根据分表规则构建查询语句。例如,如果分表是基于某个字段的值,你可以动态地构建查询条件来匹配这些分表。 4. 执行查询:使用`SELECT`语句联合查询两张分表。这可能涉及到使用`JOIN`、`UNION`或者子查询等SQL操作。 5. 返回结果:如果有需要,可以将查询结果返回给调用者。这通常是通过使用输出参数或者游标来完成的。 举一个简单的例子,假设我们有两个分表`orders_202301`和`orders_202302`,分别存储了2023年1和2份的订单数据,我们想要查询某个用户在这两个的订单总额。 ```sql DELIMITER // CREATE PROCEDURE GetOrdersTotal(IN userId INT) BEGIN DECLARE total DECIMAL(10,2); SELECT SUM(amount) INTO total FROM ( SELECT amount FROM orders_202301 WHERE user_id = userId UNION ALL SELECT amount FROM orders_202302 WHERE user_id = userId ) AS combined_orders; SELECT total; END // DELIMITER ; ``` 在这个存储过程中,我们首先声明了一个变量`total`用于存储计算出的总额。然后,我们使用了一个子查询将两个分表中特定用户的订单金额合并,并计算出总金额。 调用存储过程的方式如下: ```sql CALL GetOrdersTotal(123); ``` 其中`123`是用户ID。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值