Viewing 4 posts - 1 through 4 (of 4 total)
Thanks guys,
As usual it was a lot more simple than I thought.
The following statement achieves exactly what I was after.
SELECT categoryID, COUNT(CategoryID) AS total
FROM entry
GROUP BY categoryID
ORDER BY categoryID ASC
I...
December 8, 2003 at 7:38 am
Thanks for the advice,
The API approach is great, I'd have never worked that out. Although, I have managed to achieve what I want by creating a new column in the...
August 8, 2003 at 3:32 am
I've managed to do it, by simply creating an extra column in the main entry table called genres, and executing the following module on the form_close event:
Public Sub AddGenres()
Dim refID...
August 5, 2003 at 10:22 am
Thanks Andy,
I think the relationship is normalized, the genres are stored as follows:
Main Table:
EntryID Name Address Pcode etc.......
1 Abc ...
August 5, 2003 at 6:57 am
Viewing 4 posts - 1 through 4 (of 4 total)