php调去存储过程

本文介绍了一个MySQL存储过程的创建方法,该过程用于查询多个表中时间戳的最小年份和最大年份,并展示了如何使用PHP来调用这个存储过程。通过实例代码,读者可以了解到在MySQL中定义存储过程的语法以及在PHP中连接数据库并执行存储过程的具体步骤。
摘要由CSDN通过智能技术生成

第一步,mysql端建存储过程

DELIMITER $$
create procedure mintime()
begin
select min(year(htime)) as minnian,max(year(htime)) as maxnian FROM cas_beijing_event UNION
select min(year(htime)) as minnian,max(year(htime)) as maxnian FROM cas_hebei_event UNION
select min(year(htime)) as minnian,max(year(htime)) as maxnian FROM cas_shanghai_event UNION
select min(year(htime)) as minnian,max(year(htime)) as maxnian FROM cas_tianjin_event UNION
select min(year(htime)) as minnian,max(year(htime)) as maxnian FROM cas_bjx_event UNION
select min(year(htime)) as minnian,max(year(htime)) as maxnian FROM cas_tjx_event;
end$$
DELIMITER ;

2.php调去存储过程

<?php

$db = mysqli_connect('127.0.0.1', 'root', '');
mysqli_select_db($db, 'cass');

$db->query("set names 'gb2312'");

$rs = array();
$result = $db->real_query("call mintime3(0,0)");
do {
    if ($result = $db->store_result()) {
        while ($row = $result->fetch_array(MYSQLI_ASSOC)) {
            array_push($rs, $row);
        }
        $result->free();
    }
} while ($db->next_result());
var_dump($rs);

 

转载于:https://www.cnblogs.com/songqiaoli/p/3346876.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值