This is commonly caused by only returning one result, which shouldn't really come as a surprise. The most usual cause of this, from my own experience, is forgetting to specify a suitable itemPath for the <select>.
Take the following examples, and see how the response.object structure and itemPath combine to give the query results.
Without an itemPath
<select itemPath="" produces="XML">
<execute>
<![CDATA[
response.object = <letters>
<letter>A</letter>
<letter>B</letter>
<letter>C</letter>
</letters>
]]>
</execute>
</select>
Produces a query result similar to:
<query xmlns:yahoo="http://www.yahooapis.com/v1/base.rng"
yahoo:count="1" yahoo:created="…" yahoo:lang="en-US">
<results>
<letters>
<letter>A</letter>
<letter>B</letter>
<letter>C</letter>
</letters>
</results>
</query>
With itemPath="letters"
<select itemPath="letters" produces="XML">
…
</select>
Produces a query result identical to the previous result.
<query xmlns:yahoo="http://www.yahooapis.com/v1/base.rng"
yahoo:count="1" yahoo:created="…" yahoo:lang="en-US">
<results>
<letters>
<letter>A</letter>
<letter>B</letter>
<letter>C</letter>
</letters>
</results>
</query>
With itemPath="letters.letter"
<select itemPath="letters.letter" produces="XML">
…
</select>
Note that now, the path now specifies a collection of letter items. This produces a query result similar to:
<query xmlns:yahoo="http://www.yahooapis.com/v1/base.rng"
yahoo:count="3" yahoo:created="…" yahoo:lang="en-US">
<results>
<letter>A</letter>
<letter>B</letter>
<letter>C</letter>
</results>
</query>