Estoy descubriendo eventos de base de datos y creé una secuencia de comandos para almacenar datos diariamente:
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
Sé cómo recuperar una información por fecha:
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
Sin embargo, me pregunto si puedo obtener varios resultados a la vez. (por ejemplo, los resultados de cada viernes a lunes)?
y también puedo hacer alguna consulta SQL como:
SELECT * STATS WHERE MySimpleDate BETWEEN XX AND XX