Udemy Online Education Courses Dataset
Udemy Online Education Courses with Ratings, Enrollments, and Reviews Dataset
@kaggle.yusufdelikkaya_udemy_online_education_courses
Udemy Online Education Courses with Ratings, Enrollments, and Reviews Dataset
@kaggle.yusufdelikkaya_udemy_online_education_courses
| Column Name | Description |
|---|---|
| course_id | A unique identifier for each course. |
| course_title | The title of the course as listed on Udemy. |
| url | The URL link to the course page on Udemy. |
| is_paid | Indicates whether the course is paid (True) or free (False). |
| price | The price of the course in USD (applicable only for paid courses). |
| num_subscribers | The number of subscribers enrolled in the course. |
| num_reviews | The total number of reviews left by subscribers. |
| num_lectures | The number of lectures included in the course content. |
| level | The difficulty level of the course (e.g., All Levels, Intermediate Level). |
| content_duration | The total duration of the course content in hours. |
| published_timestamp | The date and time when the course was published on Udemy. |
| subject | The primary subject category of the course (e.g., Business Finance, Web Development). |
CREATE TABLE udemy_online_education_courses_dataset (
"course_id" BIGINT,
"course_title" VARCHAR,
"url" VARCHAR,
"is_paid" BOOLEAN,
"price" BIGINT,
"num_subscribers" BIGINT,
"num_reviews" BIGINT,
"num_lectures" BIGINT,
"level" VARCHAR,
"content_duration" DOUBLE,
"published_timestamp" VARCHAR,
"subject" VARCHAR
);Anyone who has the link will be able to view this.