-1
I would like to know how to resolve the following situation
I have a view where the item code is duplicated by the key of another column ex:
data------cod_prod-----descricao----- chave----------------------------fornecedor
12/07/18-----3-----------WALLMART
12/07/18-----3-----------00060122110060115217--PAO DE ACUCAR
I need you to return just one record but there are several records with this type of precise duplicity of a record for each cod_product.
ex: data----cod_prod---Description---- key--------------------supplier
12/07/18-----3-----------WALLMART
You want to change the field
cod_prod
of the records with this field duplicated or want to delete the records with this field duplicated to at last only have 1 imputation for eachcod_prod
?– Livio Tonini