Is it possible to conditionally select columns in MySQL?

In MySQL, will a SELECT from an indexed column alway result in sorted outputl?

  • If I issue a SELECT in mysql like: SELECT c1 FROM t1; and if c1 is indexed using a B-Tree index, then will my output essentially be equivalent to: SELECT c1 FROM t1 ORDER BY c1; Are there conditions for this to happen?

  • Answer:

    If mysql has truly implemented SQL, the answer should be no. In SQL, the purpose of an index is to speedup the where clause providing that its expression can be logically speeded up using the index and to speedup the sorting as specified by the order by clause.

goglucho... at Yahoo! Answers Visit the source

Was this solution helpful to you?

Other answers

i think it will return sorted value couse query read data from first index of table.

akira

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.