customer information along with their order details for customers located in São Paulo state. I want to see the customer ID, city, state, order ID, and order status.Please join the customers and orders tables and limit the results to 10 records. 実行クエリ: SELECT c.customer_id, c.customer_city, c.customer_state, o.order_id, o.order_status FROM olist.customers AS c INNER JOIN olist.orders AS o ON c.customer_id = o.customer_id WHERE c.customer_state = 'SP' LIMIT 10