123
This commit is contained in:
@@ -2,11 +2,17 @@ SELECT
|
||||
id,
|
||||
platz_id,
|
||||
titel AS title,
|
||||
startzeit AS start,
|
||||
endzeit AS end,
|
||||
DATE_FORMAT(
|
||||
startzeit,
|
||||
'%Y-%m-%d %H:%i:%s'
|
||||
) AS start,
|
||||
DATE_FORMAT(
|
||||
endzeit,
|
||||
'%Y-%m-%d %H:%i:%s'
|
||||
) AS end,
|
||||
gebucht_von,
|
||||
erstellt_am
|
||||
FROM `buchungen`
|
||||
WHERE platz_id =
|
||||
{{ appsmith.store.selectedSeatId }}
|
||||
WHERE `platz_id` =
|
||||
'{{ appsmith.store.selectedSeatId }}'
|
||||
ORDER BY startzeit;
|
||||
Reference in New Issue
Block a user