Changes between Version 9 and Version 10 of DatabaseProgramming


Ignore:
Timestamp:
04/30/26 14:58:31 (2 days ago)
Author:
231027
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DatabaseProgramming

    v9 v10  
    265265
    266266}}}
     267
     268== Тестирање на `trg_sync_cap`, `func_sync_cap`
     269
     270{{{
     271
     272-- select a venue (we need the number of seats)
     273SELECT * FROM "Venue" LIMIT 1;  -- 1793
     274
     275-- try to insert a new seat in that section
     276INSERT INTO "Section" (venue_id, name, number_of_seats) VALUES (1, 'TSC', 1);
     277
     278}}}