Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
can any one help me with 5th part using these tables
5.Use If() Condition to generate Full City Name from PFCity Column
for example you can use this script example :
TableC:
mapping load * inline [
City,City Name
MUM,Mumbai
TH,Thane
PU,Pune
];
TableA:
load Employee,Applymap('TableC',subfield(PFNO,'\',2)) as CityName,PFNO inline [
Employee,PFNO
87,IND\MUM\1234
89,IND\PU\1236
];
output:
can you please explain in little bit in detail with some scripts
thrid step in detail would more help full
for example you can use this script example :
TableC:
mapping load * inline [
City,City Name
MUM,Mumbai
TH,Thane
PU,Pune
];
TableA:
load Employee,Applymap('TableC',subfield(PFNO,'\',2)) as CityName,PFNO inline [
Employee,PFNO
87,IND\MUM\1234
89,IND\PU\1236
];
output:
thank you its work