Changes between Version 8 and Version 9 of ImportantUseCase000
- Timestamp:
- 12/20/22 15:38:51 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ImportantUseCase000
v8 v9 33 33 {{{#!sql 34 34 -- приказ на сите ресторани 35 select restoran_ime, restoran_rejting, restoran_adresa from restoran; 36 }}} 37 {{{#!sql 38 -- приказ на броевите на рестораните 39 select broj from restoran_tel_broj; 35 select r.restoran_ime, r.restoran_rejting, r.restoran_adresa, rtb.broj 36 from restoran as r 37 join restoran_tel_broj as rtb on r.restoran_id=rtb.restoran_id ; 40 38 }}} 41 39