Files
Sitzplatzbuchungstool/pages/Sitzplätze/queries/BookSeatSQL/BookSeatSQL.txt
T
2026-08-13 14:31:23 +00:00

9 lines
174 B
Plaintext

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