Aktuellste Version
This commit is contained in:
@@ -1,9 +1,27 @@
|
||||
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;
|
||||
ORDER BY startzeit;
|
||||
|
||||
INSERT INTO `buchungen`
|
||||
(
|
||||
id,
|
||||
titel,
|
||||
startzeit,
|
||||
endzeit,
|
||||
gebucht_von
|
||||
)
|
||||
VALUES
|
||||
(
|
||||
'{{appsmith.store.selectedSeatId}}',
|
||||
'{{InputTitel.text}}',
|
||||
'{{InputStartzeit.text}}',
|
||||
'{{InputEndzeit.text}}',
|
||||
'{{InputGebuchtVon.text}}'
|
||||
);
|
||||
Reference in New Issue
Block a user