This chapter introduces basic concepts of Sqltutor project.
Sqltutor dialog consists of three main pages: opening dialog, tutorial and final evaluation page. Tutorial dialog is designed to be as simple as possible and is based on the very basic HTML constructs so it hopefully should run safely on any web browser. The dialog is going to be described on a case of trivial session in which we answer one simple SQL query.
From the drop down list tutorial must be selected from the opening dialog page. Other options are optional.
Tutorial dialog page displays selected tutorial question, its corresponding tables an their columns and text area for entering SQL code.
Evaluation page contains only one dialog button
Evaluation page presents the basic review of the closed session: elapsed time, session number, number of questions. correct answers, total points from correct answers and session evaluation. The final evaluation is calculated as the number of correct points multiplied by ratio of correct to all questions.
All questions from the session dataset tables and answers are shown at the evaluation page. For wrong answers correct solution is also given. For each question internal id and the number of points is displayed in green font for correct answers and red for wrong or missing queries.
When tutorial is selected from the opening dialog page and started a new session is opened. Sessions record all options selected in the opening dialogue, the start time and the session status which can be open or closed. Session is closed when the tutorial dialogue is regularly finished.
All questions asked during the tutorial sessions are recorded keeping the track of your SQL answered queries. Number of tries during tutorial dialog is not relevant for the final evaluation, only the latest solution is recorded. An answer is registered when Execute SQL, Next question or Finish test button is pressed.
Each question registered in the tutorial database has a point evaluation. Trivial questions are rated by 1 point, nontrivial questions can have point rating up to 15 points. For each question one or more correct answer is stored in the database. When help is enabled during opening dialog, correct answers are displayed when help button is pressed.
Questions are asked about data from datasets, where dataset is one or more SQL tables. Datasets can be shared by different tutorials. Sqltutor selects questions in random manner, starting from easy ones to nontrivial. 1
Final evaluation of sessions is calculated as p \times (c / t), where p is the sum of points for correct answers, c is the number of correct answers and t is the number of all questions asked.
[1] If you explicitly chose min/max value of points and/or dataset during opening dialog, questions are selected simply in random.