Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
i have a field called "description" in which there are 100 rows(string)
i want to remove some 10 rows based on word starting with "Sample".
how to achieve this?
Add this at the end of load table like
Your_Table:
Load ....
where not WildMatch(description,'Sample*');
Use the function "Index"
Example:
IF(Index(FieldName, "Sample") > 0, "Do something here", "Else")
hello
tou can use the match/wildmatch function
or maybe a condition like
left(description,6)='
how to use wildmatch in this case
maybe
wildmatch(description,'Sample*')
if it matches, it returns 1
Add this at the end of load table like
Your_Table:
Load ....
where not WildMatch(description,'Sample*');
thanks. it worked