Exercise: Default Email Replace NULL email with 'No Email'. Solution sqlCopy1SELECT name, IFNULL(email, 'No Email') AS email 2FROM students;