Skip to content
Advertisement

Trying to update column on postgresql

I am trying to update my table from another tmp table called fake_email but when I ran the following:

I got the following error:

Is there a way to update it?

Advertisement

Answer

The problem is that your users table has a Constraint on it that requires the email fields to be unique for all rows in the users table.

Run the following query to locate the current rows that match your incoming data set:

In fact, you can find the duplicates with this query:

So you have two options:

  1. Remove the unique constraint
  2. Remove the Row that has a duplicate email address

Publishing a list of the data, structures and the create script for the constraint might help with specifics, but at the end of the day, your DBA has specified that the email address is unique for each row, you should not try to circumvent that.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement