llownall

Untitled

Nov 12th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. select test.name from test, teacher where teacher.login = 'Teacher1' and test.teacher_id = teacher.teacher_id
  2. select question.* from question, test where test.name = 'Test1' and question.test_id = test.test_id
  3. select result.* from result, question, test where test.name = 'Test1' and question.test_id = test.test_id
  4. and question.question_id = result.question_id
Add Comment
Please, Sign In to add comment