Place holders for multiple levels
The dimension place holders are only for first level queries. The place holders for multi-level queries are the column names from the previous query. For example, if the first query is:
select customer, order from ordertable
The placeholders available to the next query are {customer} and {order}. Use the placeholders in the next query. For example:
select Name, Address from custtable where customer =
'{customer}'