If I were using an RDBMS (e.g. SQL Server) to store event sourcing data, what might the schema look like?
I\'ve seen a few variations talked about in an abstract sens
Possible hint is design followed by "Slowly Changing Dimension" (type=2) should help you to cover:
Left fold function should be also okay to implement, but you need to think of future query complexity.