Skip to content
Advertisement

Tag: upsert

Enforce 2 unique constraints on upserts in Postgres

I have a table where I save contacts data I add data to this table from several sources. Some sources have Linkedin profiles data about people, other sources have email data. Sometimes the full names are not equal, even if they refer to the same person. And I want to do upserts to not have duplicated data. For now I’m

Where clause in upsert conflict target

Suppose I have a table created like this: When attempting to insert a new row, there are three possibilties: No row for ‘name’ exists. The new row should be inserted. A row for ‘name’ exists that has a value of NULL. The existing row should be updated with the new value. A row for ‘name ‘ exists that has a

Advertisement