I have a database that keeps track of art illustrations. I have relationships created between tables. One table that appears in my relationship is the Artist table and here is how it appears on the relationship screen
Artist
ID (primary key)
ArtistFirstName
ArtistLastName
However, when I go to do a query using the Query Design function and place that table it appears this way
Artist
*
ID (primary key)
ArtistFirstName
ArtistLastName
I don't know what makes the asterisk appear on the Query Design screen. When I try to run the query, I get a message saying...
"The SELECT statement includes a reserved word or an argument name that is misspelled or missing, or the punctuation is incorrect."
I don't know if the asterisk is what is causing this message. The other two tables are OriginalArtist
OriginalArtist
*
ArtistID (Foreign Key)
ImageID (Foreign Key)
ID (Primary Key)
And
Images
*
Reg Number (Primary Key)
...
Artist
ID (primary key)
ArtistFirstName
ArtistLastName
However, when I go to do a query using the Query Design function and place that table it appears this way
Artist
*
ID (primary key)
ArtistFirstName
ArtistLastName
I don't know what makes the asterisk appear on the Query Design screen. When I try to run the query, I get a message saying...
"The SELECT statement includes a reserved word or an argument name that is misspelled or missing, or the punctuation is incorrect."
I don't know if the asterisk is what is causing this message. The other two tables are OriginalArtist
OriginalArtist
*
ArtistID (Foreign Key)
ImageID (Foreign Key)
ID (Primary Key)
And
Images
*
Reg Number (Primary Key)
...
Comment