How do you handle multiple fact tables in a star schema?
A star schema is a common data warehouse design that consists of a central fact table and several dimension tables that are joined by foreign keys. The fact table contains the measures or metrics of interest, such as sales, revenue, or profit, while the dimension tables provide descriptive attributes, such as product, customer, or date. A star schema is simple, fast, and easy to query, but it may not be able to handle complex scenarios that require multiple fact tables. How do you handle multiple fact tables in a star schema?