Changes between Version 11 and Version 12 of ImportantUseCase001
- Timestamp:
- 12/27/22 19:27:29 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ImportantUseCase001
v11 v12 57 57 58 58 59 {{{ 60 select ime,prezime,phone_number,p.price/p.number_of_roommates as budget from appuser, student s,post p ,student_post sp 61 where (appuser.userid=s.studentid) 62 and 63 (p.postid=sp.student_postid) 64 and 65 (sp.studentid=s.studentid) 66 and 67 (p.price<=400) 68 and 69 (p.number_of_roommates=4); 70 }}} 59 71 60 72 61 73 62 74 75