Changes between Version 6 and Version 7 of ImportantUseCase003


Ignore:
Timestamp:
12/28/22 14:19:17 (19 months ago)
Author:
201087
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ImportantUseCase003

    v6 v7  
    3939
    4040На студентот му се прикажуваат сите станови кои одговараат на внесените критериуми.
     41
     42[[Image(4.png)]]
     43
     44
     45{{{
     46select ime,prezime,phone_number,(p.price/p.number_of_roommates) as budget from appuser, student s,post p ,student_post sp 
     47where (appuser.userid=s.studentid)
     48and
     49(p.postid=sp.student_postid)
     50and
     51(sp.studentid=s.studentid)
     52and
     53(p.price<=400)
     54and
     55(p.number_of_roommates=4);
     56}}}