Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个程序 p1 和 p2。我的 p1 给了我 4 列输出。我希望 p1 中的单个列在 where 条件下的选择查询输出中的 p2 过程中使用。我正在使用mysql,请建议。
运行第一个存储过程。
从结果中获取所需的列值并将其存储在变量中。
如果变量中有可用的有效值,则在调用第二个存储过程时使用该变量。
用这个:
$i=0; while($row = mysql_fetch_array($result)) { $smt[i]=$row['column_name']; i++; }
现在该列存储在数组 $smt 中。