inside cfoutput, I output my SELECT query<br><br><cfoutput query="abc"><br> <tr><br> <td><br> #abc.Name#<br> </td><br> <tr> <br></cfoutput><br> <br>But I wish to disply two <td> in one <tr>, the second points to the next record of the query result.<br> <br>In ASP it is like: recordset.MoveNext<br>then the pointer is moved to the next record.<br><br>How to do in Coldfusion?<br><br><br> <br>