Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello everyone,
I want to exclude null values from some fields when loading scprit, how can I do that please?
Here is an exemple of my script:
TABLE 1:
LOAD
FIELDS1,
FIELDS2, *
FIELDS3,
FIELDS4
FROM [lib: // PATH]
(txt, codepage is 28591, embedded labels, delimiter is ';', msq);
How to exclude the null values of the field1 / or of several fields at the same time for example?
Thank you for your help 🙂
@kangkaw do you mean ?
load
....
where len(trim(field1))>0
si c'est exactement le champ tu peux ajouter dans where par exemple :
where Match(FIELDS1,'xx','yy','zzz','647H','HOU89')>0
sinon si contient les valeurs , tu peux changer Match par where wildmatch(FIELDS1,'*xx*','*yy*','*zzz*','*647H*','*HOU89*')>0
@kangkaw do you mean ?
load
....
where len(trim(field1))>0
Merci @Taoufiq_Zarra
j'ai une deuxième question stp si tu as la réponse:
Si je veux pour un champs donné n'avoir que certaine valeur comment faire pour cela au niveau du Script?
EX: pour le champs FIELDS1 ne retenir que les valeurs suivantes :''xx,'yy','zzz','647H','HOU89'
Merci d'avance.
si c'est exactement le champ tu peux ajouter dans where par exemple :
where Match(FIELDS1,'xx','yy','zzz','647H','HOU89')>0
sinon si contient les valeurs , tu peux changer Match par where wildmatch(FIELDS1,'*xx*','*yy*','*zzz*','*647H*','*HOU89*')>0