开发者

What implication does select * from foo have? [duplicate]

开发者 https://www.devze.com 2023-02-14 16:40 出处:网络
This question already has answers here: Closed 11 years ago. Possible Duplicate: Can select * usage ever be justified?
This question already has answers here: Closed 11 years ago.

Possible Duplicate:

Can select * usage ever be justified?

Curious to hear this from folks with more DBA insight, but what performance implications does an application face 开发者_C百科from when you see a query like:

select * from some_large_table;

You have to do a full table scan since no index is being hit, and I believe if we're talking O notation, we're speaking O(N) here where N is the size of the table. Is this typically considered not optimal behavior? What if you really do need everything from the table at certain times? Yes we have tools such as pagination etc, but I'm talking strictly from a database perspective here. Is this type of behavior normally frowned upon?


What happens if you don't specify columns, is that the DB Engine has to query the master table data for the column list. This query is really fast, but causes a minor performance issue. As long as you're not doing a sloppy SELECT * with a JOIN statement or nested queries, you should be fine. However, note the small performance impact of letting the DB Engine doing a query to find the columns.


MySQL server opens a cursor on server-side to read that table. The client of the query may read none or all records and performance for the client will only depend on the number of records it actually fetched. Also the performance of the query on server-side can acutally be faster than query with some conditions as it involves also some index reading. Only if client fetched all records, it will be equivalent to full table scan.


  1. Selecting more columns than you need (select *) is always bad. Don't do more than you have to
  2. If you're selecting from the whole table, it doesn't matter if you have an index.

Some other issues you're going to run into is how you want to lock the table. If this is a busy application you might not want to prevent locking entirely because of the inconsistent data that might be returned. But if you lock too tightly it could slow the query further. O(n) is considered acceptable in any computer science application. However in databases we measure in time & number of reads/writes. This is a huge number of reads and will probably take a long time to execute. Therefore it's unacceptable.

0

精彩评论

暂无评论...
验证码 换一张
取 消