jr
05-02-2006, 05:27 AM
Hi,
I am using the following query
[b]
SELECT Count(*) AS votes, show.showName, awards.Award
FROM (show INNER JOIN vote ON show.showID = vote.voteshow)
INNER JOIN awards ON vote.votenum = awards.awardkey
GROUP BY show.showName, awards.Award
ORDER BY awards.award, Count(*) DESC</BLOCKQUOTE>
which counts votes for award recepients (shows) and orders them by award and number of votes. until last night, this was working fine. now, when i run the query, show.showname returns a ?.
any suggestions?
thanks
edit: i just downloaded the database and ran the query in access on my computer. the field that was returning '?'s returns non-standard characters. the other queries that access the show.showname field have no trouble doing so.
Post Edited (jr) : 5/2/2006 5:54:14 PM GMT
I am using the following query
[b]
SELECT Count(*) AS votes, show.showName, awards.Award
FROM (show INNER JOIN vote ON show.showID = vote.voteshow)
INNER JOIN awards ON vote.votenum = awards.awardkey
GROUP BY show.showName, awards.Award
ORDER BY awards.award, Count(*) DESC</BLOCKQUOTE>
which counts votes for award recepients (shows) and orders them by award and number of votes. until last night, this was working fine. now, when i run the query, show.showname returns a ?.
any suggestions?
thanks
edit: i just downloaded the database and ran the query in access on my computer. the field that was returning '?'s returns non-standard characters. the other queries that access the show.showname field have no trouble doing so.
Post Edited (jr) : 5/2/2006 5:54:14 PM GMT