Hi,
Having a table with this structure...
Table_files
- id_file (PK)
- file_name
- file_path
... can I have a constraint that allows me to not duplicate the pair "file_name"+"file_path" (but allows me to duplicate the "file_name" and "file_path" individually), where the only Primary Key is the field "id_file"?
Thanks