有没有更快的方法来执行这个 mysql 查询?

发布于 2024-09-18 16:55:14 字数 243 浏览 5 评论 0原文

就服务器负载而言,是否有更快的方法来执行这个最简单的查询?我认为除了这种方法之外我从未尝试过任何其他方法:

$sql = 'SELECT thing FROM table WHERE id="' . $id . '" ';
$res = mysql_query($sql);
$row = mysql_fetch_array($res);
$thing = $row[0];

有什么方法可以改进这个方法?

Is there a faster way to perform this most simple query in terms of server load? I don't think I've ever tried anything other than this method:

$sql = 'SELECT thing FROM table WHERE id="' . $id . '" ';
$res = mysql_query($sql);
$row = mysql_fetch_array($res);
$thing = $row[0];

Any way to improve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泼猴你往哪里跑 2024-09-25 16:55:14

就性能而言,如果尚未完成,您可以在 id 上创建索引

安全方面,您可能会受到 SQL 注入攻击,请使用 prepares statements反而。

Performance wise you can create an index on id if not already done.

Security wise you are open to SQL-injection attack, use prepares statements instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文