Ich entdecke Datenbankereignisse und habe ein Skript zum täglichen Speichern von Daten erstellt:
tell application "Database Events"
tell database "Stats"
set theRecord to make new record with properties {name:mySimpleDate}
tell theRecord
make new field with properties {name:"Accounts", value:theCount}
end tell
end tell
end tell
Ich kann eine Information nach Datum abrufen:
tell application "Database Events"
tell database "Stats"
set theRecord to first record whose name = "24 September 2018"
tell theRecord
value of field "Accounts"
end tell
end tell
end tell
Ich frage mich jedoch, ob ich mehrere Ergebnisse gleichzeitig erfassen kann. (zB jeden Freitag bis Montag Ergebnisse)?
und kann ich auch einige SQL-Abfragen damit machen wie:
SELECT * STATS WHERE MySimpleDate BETWEEN XX AND XX