Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Can this be done with one or two UPDATEs?
Message
 
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Versions des environnements
Visual FoxPro:
VFP 9 SP1
Divers
Thread ID:
01535797
Message ID:
01535822
Vues:
37
>>Hi,
>>
>>Say I have a table that has column MY_INT_FLD I(4). There could be some records in this table that have the same value in this field. And some records that have 0 in this field. I want to create one or two (or maybe even three) UPDATE command(s) that will set each record of this table to a unique value and it has to be greater than 0. Is it possible? TIA.
>
>Try:
>
>update myTable set Field = Field + 1000  + recno() ;
>where Field in (select Field from myTable ;
>group by Field having count(*) > 0) 
>
>I add 1000 assuming that the total number of records is less, so we always end up with unique values after update.

Thank you. The goal was not just to have a unique value (what Sergey suggested would have done it). But the goal was to preserve all the existing values and only change the value in records where duplicate exists.
"The creative process is nothing but a series of crises." Isaac Bashevis Singer
"My experience is that as soon as people are old enough to know better, they don't know anything at all." Oscar Wilde
"If a nation values anything more than freedom, it will lose its freedom; and the irony of it is that if it is comfort or money that it values more, it will lose that too." W.Somerset Maugham
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform