Changes between Version 6 and Version 7 of ImportantUseCase003
- Timestamp:
- 12/28/22 14:19:17 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ImportantUseCase003
v6 v7 39 39 40 40 На студентот му се прикажуваат сите станови кои одговараат на внесените критериуми. 41 42 [[Image(4.png)]] 43 44 45 {{{ 46 select ime,prezime,phone_number,(p.price/p.number_of_roommates) as budget from appuser, student s,post p ,student_post sp 47 where (appuser.userid=s.studentid) 48 and 49 (p.postid=sp.student_postid) 50 and 51 (sp.studentid=s.studentid) 52 and 53 (p.price<=400) 54 and 55 (p.number_of_roommates=4); 56 }}}