Activity 11
A salesperson asks you whether you can use your new search skill to find a customer by the name of Arlena who has made some purchases before.
Use the customer_sales table and create a searchable view with one record per customer. This view should use the customer_id column as the primary key and be searchable on everything related to that customer: name, email address, phone number, and purchased products. It is acceptable to include other fields as well. For your convenience, you can also include the original JSON column as is.
Query your new searchable view using the Arlena keyword filter. Note that the results of some JSON functions are still JSON, not TEXT. You may need to perform type conversion based on the function you choose. Also, there must be a filter condition that this customer made some purchases before (the sales array contains at least one record, which is record 0).