Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
explain me with example
Map_Price: //Mapping Table
Mapping LOAD * INLINE [
Category, Price
Adult, 10
Child, 5
Student, 6
Senior, 6
LoyalMember, 5
];
Tickets:
LOAD * INLINE [
Name, Class
Ann, Student
David, Adult
Sara, Senior
Keith, Child
Tom, Adult
Dave, Student
Sam, Adult
Monica, LoyalMember
Ethan, Student
Rose, Child
];
Price:
Load
Name,
Class,
ApplyMap('Map_Price',Class) as TicketPrice //Here we use applymap to look up for the ticket prices
Resident
Tickets;
Map_Price: //Mapping Table
Mapping LOAD * INLINE [
Category, Price
Adult, 10
Child, 5
Student, 6
Senior, 6
LoyalMember, 5
];
Tickets:
LOAD * INLINE [
Name, Class
Ann, Student
David, Adult
Sara, Senior
Keith, Child
Tom, Adult
Dave, Student
Sam, Adult
Monica, LoyalMember
Ethan, Student
Rose, Child
];
Price:
Load
Name,
Class,
ApplyMap('Map_Price',Class) as TicketPrice //Here we use applymap to look up for the ticket prices
Resident
Tickets;