This lesson shows how MySQL functions NOW(), CURDATE(), and CURTIME() work. NOW() returns the full current date and time, CURDATE() returns only the date, and CURTIME() returns only the time. Each function gets the current system date/time when the query runs. The example query selects all three values. The execution table shows each function call and its returned value. Variables track how each value is assigned step-by-step. Key moments clarify common confusions like why NOW() returns both date and time but CURDATE() does not. The quiz tests understanding by asking about specific steps and outputs. This helps beginners see exactly what each function returns and when.