This visual execution shows how Snowflake creates three types of tables: permanent, temporary, and transient. First, you choose the table type, then define columns, and run the create command. Permanent tables stay forever until dropped. Temporary tables exist only during the session and are removed automatically when the session ends. Transient tables persist like permanent tables but do not have fail-safe data retention. The execution table traces each step, showing creation and what happens after the session ends. The variable tracker shows the existence of each table before creation, after creation, and after session ends. Key moments clarify why temporary tables disappear and the difference between permanent and transient tables. The quiz tests understanding of table lifetimes and retention. This helps beginners see how table types behave in Snowflake practically.