Excel serial dates are the number of days since January 1, 1900.
Excel's day 1 corresponds to 1900-01-01. So, add the Excel serial number (45669 in this case) as days to this base date using DATE_ADD.
The Query will look like this:
SELECT DATE_ADD('1900-01-01', INTERVAL 45669 DAY) AS normal_date;