INSERT INTO rental (rental_date, last_update, return_date)
    SET rental_date, last_update = NOW()
    AND return_date = NULL.
I'm trying to insert rental_date, last_update and return_date into the table rental while also setting their timestamp to NOW() and NULL.
 
     
     
     
    