Changes between Version 11 and Version 12 of ImportantUseCase001


Ignore:
Timestamp:
12/27/22 19:27:29 (19 months ago)
Author:
201144
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ImportantUseCase001

    v11 v12  
    5757
    5858
     59{{{
     60select ime,prezime,phone_number,p.price/p.number_of_roommates as budget from appuser, student s,post p ,student_post sp 
     61where (appuser.userid=s.studentid)
     62and
     63(p.postid=sp.student_postid)
     64and
     65(sp.studentid=s.studentid)
     66and
     67(p.price<=400)
     68and
     69(p.number_of_roommates=4);
     70}}}
    5971
    6072
    6173
    6274
     75