Trying to simplify update/insert in two linked tables (1 Viewer)

Notiophilus

Registered User.
Local time
Today, 13:47
Joined
Jan 18, 2015
Messages
42
I have a list of authors, each of which may go by multiple pseudonyms. One of these is the "main" pseudonym and is displayed in forms, reports etc. (E.g. "JRR Tolkien" is the main pseud, synonymous to "John Ronald Reuel Tolkien" and "hobbitlover1")
  • tblAuthor: AuthorID [PK, autogenerated], MainPseudID
  • tblPseud: PseudID [PK, autogenerated], Pseud [text], AuthorID
where AuthorID.tblAuthor = AuthorID.tblPseud (one-to-many).

When I want to add a completely new author, by entering a new pseudonym into a form (=strNewPseud) I do the following:
Code:
        ' 1) add new pseud (text), get autogenerated PseudID
        strSQL = "INSERT INTO tblPseud (Pseud)" & _
                " VALUES ('" & strNewPseud & "');"
        DBEngine(0)(0).Execute strSQL, dbFailOnError
        
       ' 2) insert that PseudID as the main pseud into tblAuthor, get autogenerated AuthorID
        lngNewPseudID = ELookup("[PseudID]", "tblPseud", "Pseud = '" & strNewPseud& "'")
        strSQL = "INSERT INTO tblAuthor ( MainPseudID )" & _
                " VALUES (" & strNewPseud & ");"
        DBEngine(0)(0).Execute strSQL, dbFailOnError
        
       ' 3) find that new AuthorID, then update tblPseud with the AuthorID we just got.
        lngNewAuthorID = ELookup("[AuthorID]", "tblAuthor", "[MainPseudID] = " & lngNewPseudID)
        strSQL = "UPDATE tblPseud" & _
                " SET tblPseud.AuthorID = " & lngNewAuthorID & _
                " WHERE tblPseud.PseudID = " & strNewPseudID & ";"
        DBEngine(0)(0).Execute strSQL, dbFailOnError

It works perfectly well, but I can't help second-guessing myself. Is this really the most efficient approach?
 

Notiophilus

Registered User.
Local time
Today, 13:47
Joined
Jan 18, 2015
Messages
42
I use bound forms normally but this specific form needs to be unbound. I've used Upserts all of once, but I think I'd run into the same problem, right - having to get the new autonumber PseudID and the new autonumber AuthorID simultaneously?

> scratch that, it's bound to tblAuthor. hmmmmmm why did I do that
 

ebs17

Well-known member
Local time
Today, 13:47
Joined
Feb 7, 2020
Messages
1,946
It works perfectly well
If you set referential integrity in the relationship (which is a must in the vast majority of cases), your action will fail in this order.

1) You insert into the primary table (tblAuthor) and remember the newly created primary key
2) Now you can enter into the secondary table (tblPseud) and use the saved primary key as a foreign key.

insert that PseudID as the main pseud into tblAuthor
Should this be a second key to link the tables? What are you doing? Did you think of that yourself, or who teaches something like that?

For main pseud:
Create an additional field in tblPseud for this information:
- Boolean field where the main pseud receives a True or
- Number field, where e.g. 1 indicates the main pseud
 
Last edited:

Notiophilus

Registered User.
Local time
Today, 13:47
Joined
Jan 18, 2015
Messages
42
If you set referential integrity in the relationship (which is a must in the vast majority of cases), your action will fail in this order.

1) You insert into the primary table (tblAuthor) and remember the newly created primary key
2) Now you can enter into the secondary table (tblPseud) and use the saved primary key as a foreign key.


Should this be a second key to link the tables? What are you doing? Did you think of that yourself, or who teaches something like that?
1694366603173.png


This is what the relationship looks like. Referential integrity is enforced with cascade update and delete. tblAuthor.MainPseudID is not required; tblPseud.AuthorID (FK) is not required. This may be bad design, I'm not sure; I remember struggling when I first built that part of the database a few years ago.

Should this be a second key to link the tables?
Do you mean having two relationships between the tables - tblAuthor.AuthorID (PK) = tblPseud.AuthorID and tblAuthor.MainPseudID = tblAuthor.PseudID(PK)? I had no idea that was possible. Is this what you mean?
1694367715509.png


What are you doing? Did you think of that yourself, or who teaches something like that?
I'm self-taught and doing this for fun, so that should answer both your questions.
 
Last edited:

Notiophilus

Registered User.
Local time
Today, 13:47
Joined
Jan 18, 2015
Messages
42
For main pseud:
Create an additional field in tblPseud for this information:
- Boolean field where the main pseud receives a True or
- Number field, where e.g. 1 indicates the main pseud

Sorry, just saw your edit. This does make a lot of sense, and might make updating simpler. How would you ensure that each author has exactly one main pseud - no more, no less? That was my main reason for the structure I posted above.

Thanks for taking the time to answer. I'm trying to revamp this thing and it's hard to keep my ideas straight.
 

ebs17

Well-known member
Local time
Today, 13:47
Joined
Feb 7, 2020
Messages
1,946
How would you ensure that each author has exactly one main pseud - no more, no less?
1) Check when entering. If you have several records and want to change the default, then first set all of them to False and then the new one to True.

2) As a real safeguard, install a check constraint in tblPseud, in the sense of "number of True for a given AuthorID <= 1"
You should think again about “no less”.
 
Last edited:

Pat Hartman

Super Moderator
Staff member
Local time
Today, 07:47
Joined
Feb 19, 2002
Messages
43,275
I'm not surprised that you had trouble implementing this structure. It is pathological. You have two tables, each of which requires a row to have been added to the "other" table before a row can be added to "this" table.

I don't get the necessity of assigning a priority to the pseudonym.

I would have used the concept of "family" that we see used in mailing lists in order for all family members to exist in the membership (i.e. tblAuthor) list but one if them is designated as the "family" ID. So, any row with the MainAuthorID value = AuthorID is either singular or the parent of a group of pseudonyms. Some people leave the MainAuthorID null for the "master" record but logically it is easier if it ALWAYS has the "master" value. That way you always use the MainAuthorID as the reference ID. In this schema, which is commonly used by churches, when a child leaves home and now has his own address, the "family" ID is changed to be his own ID so he becomes the head of his own family.
 

June7

AWF VIP
Local time
Today, 03:47
Joined
Mar 9, 2014
Messages
5,472
Last edited:

Users who are viewing this thread

Top Bottom