You are working with a Microsoft Fabric warehouse at MDFT Pro that contains a table named Enrollments. The table contains the following columns:
| Column name | Data type |
|---|---|
| course_id | Integer |
| course_name | varchar(50) |
| enrollment_date | Datetime |
You need to complete a T-SQL statement that meets these requirements:
You have the following T-SQL query:
SELECT
course_id AS courseID,
__________ AS courseName
FROM Enrollments
How should you complete the query?
Choose the correct answer from the options below.
Explanations for each answer: