Changes between Version 24 and Version 25 of QueryOptimization


Ignore:
Timestamp:
04/30/26 18:48:42 (7 weeks ago)
Author:
231027
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • QueryOptimization

    v24 v25  
    9393-- index for linking sections to venues
    9494CREATE INDEX idx_section_venue_id ON "Section"(venue_id);
     95
     96-- index for optimizing search and update operations on specific seat numbers
     97CREATE INDEX idx_seat_number ON "Seat"(seat_number);
    9598
    9699