| 11 | | user_id, first_name, last_name, email, password, role, |
| 12 | | |
| 13 | | plan_id, plan_name, price, duration_months, access_type, |
| 14 | | |
| 15 | | subscription_id, start_date, end_date, subscription_status, |
| 16 | | |
| 17 | | payment_id, amount, |
| 18 | | |
| 19 | | ticket_id, admin_id, subject, description, ticket_status, created_at, |
| 20 | | |
| 21 | | category_id, category_name, category_description, |
| 22 | | |
| 23 | | course_id, course_name, course_price, course_status, instructor_id, |
| 24 | | |
| 25 | | module_id, module_title, module_description, |
| 26 | | |
| 27 | | lesson_id, lesson_title, material, |
| 28 | | |
| 29 | | quiz_id, total_points, passing_score, |
| 30 | | |
| 31 | | attempt_id, score, attempt_date, |
| 32 | | |
| 33 | | enrollment_id, enroll_date, completion_status, progress_percentage, |
| 34 | | |
| 35 | | certificate_id, issue_date, certificate_code, certificate_status |
| | 11 | user_id, first_name, last_name, email, password, role, |
| | 12 | plan_id, plan_name, price, duration_months, description, access_type, |
| | 13 | subscription_id, start_date, end_date, subscription_status, |
| | 14 | payment_id, amount, |
| | 15 | ticket_id, admin_id, subject, description_ticket, ticket_status, created_at, |
| | 16 | category_id, category_name, category_description, |
| | 17 | course_id, course_name, course_price, course_status, instructor_id, |
| | 18 | module_id, module_title, module_description, |
| | 19 | lesson_id, lesson_title, material, |
| | 20 | quiz_id, total_points, passing_score, |
| | 21 | attempt_id, score, attempt_date, |
| | 22 | enrollment_id, enroll_date, completion_status, progress_percentage, |
| | 23 | certificate_id, issue_date, certificate_code, certificate_status |
| 54 | | FD4: plan_id → plan_name, price, duration_months, access_type |
| 55 | | FD5: subscription_id → user_id_sub, plan_id_sub, start_date, end_date, subscription_status |
| 56 | | FD6: payment_id → user_id_pay, subscription_id_pay, amount |
| | 42 | FD4: plan_id → plan_name, price, duration_months, description, access_type |
| | 43 | FD5: subscription_id → user_id, plan_id, start_date, end_date, subscription_status |
| | 44 | FD6: payment_id → user_id, subscription_id, amount |
| 77 | | FD10: module_id → course_id_mod, module_title, module_description |
| 78 | | FD11: lesson_id → module_id_lesson, lesson_title, material |
| 79 | | FD12: quiz_id → lesson_id_quiz, total_points, passing_score |
| 80 | | FD13: attempt_id → user_id_attempt, quiz_id_attempt, score, attempt_date |
| | 65 | FD10: module_id → course_id, module_title, module_description |
| | 66 | FD11: lesson_id → module_id, lesson_title, material |
| | 67 | FD12: quiz_id → lesson_id, total_points, passing_score |
| | 68 | FD13: attempt_id → user_id, quiz_id, score, attempt_date |