wiki:WatchingLessons

Version 3 (modified by 221296, 15 hours ago) ( diff )

--

Watching Lessons

Actors: Registered User (USER)

1. Load Modules for a Course.

SELECT module_id, title, description
FROM module
WHERE course_id = :courseId;

2. Load Lessons for a Module.

SELECT lesson_id, title, material
FROM lesson
WHERE module_id = :moduleId;

Note: See TracWiki for help on using the wiki.