Tell me about your approach to SQL data modeling and designing a streaming data system, including how you would implement it. For the hands-on portion, use the supplied relational tables to identify each actor's latest processed event while preserving actors with no qualifying event.
actor_id, actor_name, event_type, event_ts, sequence_idactor_id ascending, with NULL event fields for actors without a qualifying event| Column | Type | Description |
|---|---|---|
| actor_idPK | INT | Stable identifier for an actor |
| actor_name | VARCHAR(100) | Display name of the actor |
| Column | Type | Description |
|---|---|---|
| sequence_idPK | BIGINT | Unique monotonically increasing event sequence |
| actor_id | INT | Actor associated with the event |
| event_type | VARCHAR(50) | Logical type of the event |
| event_ts | TIMESTAMP | Event occurrence timestamp |
| status | VARCHAR(20) | Processing status of the event |