Hello,
I have made a table where I print out data from a database. I would like to number all of the rows using this code:
<%
Do While Not rs.EOF
i = 0
Response.Write(i)
i = i + 1
Loop
%>
This should appear within this code:
<% While ((Repeat1__numRows <> 0) AND (NOT rs.EOF)) %>
...
<%...
Hello,
I have made a query where I select data about a contestant and his total points and results in a competition. I have ordered these on total score.
I want to rank each contestant in a competition on who has the best results.
Best contestant – position 1, 2nd best contestant – position 2...
Hello,
I would like to set an alias to this Select-line, but it won’t work:
(SELECT SUM((rr.points) + (rr.result))
FROM roundresult rr
WHERE rr.contid = contestants.contid)
I have tried with and without AS and also with and without ‘ and “. Nothing seems to work.
I would like to order the...
Hello,
I am working on a query for an Access Database. It’s a database about a competition where the results for the round are registered at the end of each round.
I want to make a list of results where I select the data about the contestants and their results for each round.
The tables are...
Hello,
I am working on a query for an Access Database. It’s a database about a competition where the results for the round are registered at the end of each round.
I want to select data about the persons in the register who have never competed or not competed in one or more of the rounds.
The...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.