A certain database table records the execution status of a project, with multiple people participating in the project every day.The task is to calculate the number of people who have also participated in the project the previous day, grouped by date.SQL grouping does not allow retention of subsets, making it difficult to calculate the intersection of adjacent subsets.SPL (Structured Process Language) allows direct retention of subsets and calculation of intersections, making the task easier to implement.