Files
Sitzplatzbuchungstool/pages/Sitzplätze/queries/GetBookings/GetBookings.txt
T
2026-08-14 07:59:25 +00:00

10 lines
186 B
Plaintext

SELECT
id,
platz_id,
titel AS title,
startzeit AS start,
endzeit AS end,
gebucht_von
FROM `buchungen`
WHERE platz_id = '{{appsmith.store.selectedSeatId}}'
ORDER BY startzeit;