MySQL查询一个结果
非常简单的问题:查询数据库表并搜索可能数以万计的条目来查找一个匹配结果,还是为该 1 个结果创建另一个新表,是否更有效?
从 x WHERE b = 1 中选择 n
或 从 y 中选择 *
?
Pretty straightforward question: is it more efficient to query a database table and search potentially tens of thousands of entries for the one matching result, or create another new table for that 1 result?
SELECT n FROM x WHERE b = 1
OR SELECT * from y
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的字段
b
已建立索引并且其基数很高 - 那么第一个查询将足够有效。If you have your field
b
indexed and its cardinality is high - then first query will be enough efficient.