Imagine running a big SELECT * on the order table while another process updates the same records concurrently. Your query completes displaying the original data, and the other sees successful data modification. This is Multi-Version Concurrency Control (MVCC), a technique where the database creates new copies of rows instead of overwriting them.