有没有更快的方法来执行这个 mysql 查询?
就服务器负载而言,是否有更快的方法来执行这个最简单的查询?我认为除了这种方法之外我从未尝试过任何其他方法:
$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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
就性能而言,如果尚未完成,您可以在
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.