Changes between Version 8 and Version 9 of ImportantUseCase000


Ignore:
Timestamp:
12/20/22 15:38:51 (2 years ago)
Author:
181213
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ImportantUseCase000

    v8 v9  
    3333{{{#!sql
    3434-- приказ на сите ресторани
    35 select restoran_ime, restoran_rejting, restoran_adresa from restoran;
    36 }}}
    37 {{{#!sql
    38 -- приказ на броевите на рестораните
    39 select broj from restoran_tel_broj;
     35select r.restoran_ime, r.restoran_rejting, r.restoran_adresa, rtb.broj
     36from restoran as r
     37join restoran_tel_broj as rtb on r.restoran_id=rtb.restoran_id ;
    4038}}}
    4139