PHP/MySQL中的多个数据表? [英] Multiple Data Tables in PHP/MySQL?

查看:32
本文介绍了PHP/MySQL中的多个数据表?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在 asp.net 中,您可以通过对数据库的一次调用来检索 MULTIPLE 数据表.你能在php中做同样的事情吗?

In asp.net, you can retrieve MULTIPLE datatables from a single call to the database. Can you do the same thing in php?

例子:

$sql ="select * from t1; select * from t2;";
$result = SomeQueryFunc($sql);
print_r($result[0]); // dump results for t1
print_r($result[1]); // dump results for t2

你可以这样做吗?

推荐答案

这叫做多查询".PHP 中的 mysql 扩展没有任何方法来启用多查询.mysqli 扩展确实允许您使用多查询,但只能通过 multi_query() 方法.请参阅 http://php.net/manual/en/mysqli.multi-query.php

This is called "multi-query." The mysql extension in PHP does not have any means to enable multi-query. The mysqli extension does allow you to use multi-query, but only through the multi_query() method. See http://php.net/manual/en/mysqli.multi-query.php

不推荐使用多查询,因为它会增加 SQL 注入攻击造成的潜在破坏.如果你使用多查询,你应该使用严格的代码检查习惯来避免SQL注入漏洞.

Using multi-query is not recommended, because it can increase the potential damage caused by SQL injection attacks. If you use multi-query, you should use rigorous code inspection habits to avoid SQL injection vulnerability.

这篇关于PHP/MySQL中的多个数据表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆