Exercise: Create Table Create a courses table with id and name. Solution sqlCopy1CREATE TABLE courses ( 2 id INTEGER, 3 course_name TEXT 4);