怎么写mysql存储过程,并用php调用它?

怎么写mysql存储过程,并用php调用它?我现在要通过userid查table1,得到其username,再根据username去查table2中user的详情,并输出... 怎么写mysql存储过程,并用php调用它?

我现在要通过userid查table1,得到其username,
再根据username去查table2中user的详情,并输出
展开
 我来答
鄂栈怀强aj
2015-10-12 · TA获得超过122个赞
知道小有建树答主
回答量:93
采纳率:0%
帮助的人:63.6万
展开全部
  • 实现原理

  1. 首先,需要知道怎么写mysql存储过程,了解mysq存储过程语言,

  2. 其次,使用mysql工具创建存储过程。

  3. 最后,通过mysql_query()函数执行mysql变量的设置和mysql存储过程及返回值。

  • 具体代码如下:

  1. mysql存储过程代码

create procedure pro_name(user_id int)
begin
.........
end

    2.  PHP代码

$host     = "localhost";
$user     = "root";
$password = "232412";
$db       = "user_db";
$dblink   = mysql_connect($host,$user,$password)or die("can't connect to mysql");
mysql_select_db($db,$dblink)or die("can't select user_db");
$user_id  = 1;
$res      = mysql_query("set @a=$user_id",$dblink);
$res      = mysql_query("call pro_name(@a)",$dblink);
zhangjia96988
2012-12-20
知道答主
回答量:14
采纳率:0%
帮助的人:6.9万
展开全部
先用post,将数据传到action指定的php文件,然后使用sql语句,向数据库插入数据,之后就可以在DB中查到相应的数据
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
84442578
2012-12-20 · 超过15用户采纳过TA的回答
知道答主
回答量:36
采纳率:0%
帮助的人:33.8万
展开全部
mysql创建的存储,在mysql里执行就可以

create procedure pr_user_get(
p_user_id int -- 传入的参数

)
proc_start:begin
select b.*
from table1 as a,table2 as b
where a.userid = p_user_id

and a.username = b.username;

end proc_start

php调用
$sql = "call pr_user_get('$userid')";
$result = mysql_query($sql);
$row = mysql_fetch_array($result);

$row 就是了
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
b7442358
2012-12-20 · 超过18用户采纳过TA的回答
知道答主
回答量:90
采纳率:0%
帮助的人:37.1万
展开全部
$table1sql = "select username from table1 where userid = id";
$table1query = mysql_query($table1sql);
$table1row = mysql_fetch_array($table1query);
$table2sql = "select user from table2 where username = $table1row[0] ";
$table2query = mysql_query($table2sql);
$table2row = mysql_fetch_array($table2query);
echo $table2row[0];
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式