Exercise: Combine Names Get all names from students and teachers. Solution sqlCopy1SELECT name FROM students 2UNION 3SELECT name FROM teachers;