Changes between Version 9 and Version 10 of DatabaseProgramming
- Timestamp:
- 04/30/26 14:58:31 (2 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DatabaseProgramming
v9 v10 265 265 266 266 }}} 267 268 == Тестирање на `trg_sync_cap`, `func_sync_cap` 269 270 {{{ 271 272 -- select a venue (we need the number of seats) 273 SELECT * FROM "Venue" LIMIT 1; -- 1793 274 275 -- try to insert a new seat in that section 276 INSERT INTO "Section" (venue_id, name, number_of_seats) VALUES (1, 'TSC', 1); 277 278 }}}
