I need to insert into a table unique data for all cells. My table has 3 columns and I need to ignore insert if all 3 cells has the same value.
for example I have the table: |column_1|column_2|column_3|
and the values for this table:
- |val1|val2|val3|
- |val1|val2|val5|
- |val1|val2|val3|
- |val1|val2|val3|
So I need to be inserted only values 1 and 2 because 3 and 4 are the same as 1. I need this to be done in Sqlite v3.9.