Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
ALTER n(7) to c(6) and pad with leading zeros
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Divers
Thread ID:
00529975
Message ID:
00529977
Vues:
12
This message has been marked as the solution to the initial question of the thread.
>I need to alter a numeric table field to be a character field and I want to pad it with leading zeros. I tried the REPLACE ALL but because the length of old_gl_bnk is always the size of the table field, nothing is padded. Any ideas?
>
>ALTER TABLE costcent2 ALTER COLUMN old_gl_bnk C(5)
>REPLACE ALL costcent2.old_gl_bnk with padl(old_gl_bnk,5,'0')
>
>Brenda
Try REPLACE ALL costcent2.old_gl_bnk with padl(ALLTRIM(old_gl_bnk),5,'0')
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform