madman070578
01-13-2006, 07:20 PM
I'm trying to extract the data from a simple relational database and display it in a table. I can code the sql to display all data from a single table, but not multiple tables.
The database is to store a music collection. The field descriptions are in the square brackets.
It has 4 tables -
Main Table - TblMusic
Fields - AlbumID (Primary Key)
Name [Album Name]
ArtistId(Link field to TblArtist)
NatId [Nationality of Group/Artist] (Link field to TblNationality)
RDate [Album Release Date]
Tracks [Number of Tracks on Album]
Image [Filename for image of CD Cover]
GenreId [Type of music] (Link field to TblGenre)
Genre Table - TblGenre
GenreId (Primary Key) Link Field
Genre [Type of Music]
Artist Table - TblArtist
ArtistId (Primary Key) Link Field
Artist [Artist/Group Names]
Description [Description of Artist]
Nationality Table - TblNationality
NatId (Primary Key)
Nationality [Nationality of Artist]
Can someone help me in working out the SQL to get the following information displayed in a ASP table......
Album Name, Artist Name, Artist Description, Artist Nationality, Album Release Date, Number of Tracks, and Genre.
Many thanks to all.....
The database is to store a music collection. The field descriptions are in the square brackets.
It has 4 tables -
Main Table - TblMusic
Fields - AlbumID (Primary Key)
Name [Album Name]
ArtistId(Link field to TblArtist)
NatId [Nationality of Group/Artist] (Link field to TblNationality)
RDate [Album Release Date]
Tracks [Number of Tracks on Album]
Image [Filename for image of CD Cover]
GenreId [Type of music] (Link field to TblGenre)
Genre Table - TblGenre
GenreId (Primary Key) Link Field
Genre [Type of Music]
Artist Table - TblArtist
ArtistId (Primary Key) Link Field
Artist [Artist/Group Names]
Description [Description of Artist]
Nationality Table - TblNationality
NatId (Primary Key)
Nationality [Nationality of Artist]
Can someone help me in working out the SQL to get the following information displayed in a ASP table......
Album Name, Artist Name, Artist Description, Artist Nationality, Album Release Date, Number of Tracks, and Genre.
Many thanks to all.....