0

I have several layers and they all have identical table organization. I need to find if there are any features that have a different names but the same UUID. I know that this could be done if I connect QGIS with Postgres but is there any way to do this in QGIS only.

Taras
  • 32,823
  • 4
  • 66
  • 137
Luka
  • 1

1 Answers1

1

I would merge the layers first, then with field calculator I would create a a virtual field "uuid"||'_'||"name" then using this solution to find duplicates: Identifying duplicate attributes in field using QGIS and then invert selection.

Tamas Kosa
  • 1,507
  • 3
  • 15
  • 30