DayOfMonth
DayOfMonth( timestamp )
DayOfMonth( timestamp )
DayOfMonth( timestamp )
DayOfMonth( timestamp )
day_of_month( timestamp )
DayOfMonth( timestamp )
Description
The DayOfMonth
function extracts the day of the month from a
Timestamp.
Returns
A Number which represents the value of the day of the month, in the range 1 to 31, from the provided timestamp.
Examples
The following query returns the day of the month from a timestamp:
try
{
Value result = await client.Query(
DayOfMonth(Time("2019-04-29T12:51:17Z"))
);
Console.WriteLine(result);
}
catch (Exception e)
{
Console.WriteLine($"ERROR: {e.Message}");
}
LongV(29)
result, err := client.Query(
f.DayOfMonth(f.Time("2019-04-29T12:51:17Z")))
if err != nil {
fmt.Fprintln(os.Stderr, err)
} else {
fmt.Println(result)
}
29
System.out.println(
client.query(
DayOfMonth(Time(Value("2019-04-29T12:51:17Z")))
).get()
);
29
client.query(
q.DayOfMonth(q.Time('2019-04-29T12:51:17Z'))
)
.then((ret) => console.log(ret))
.catch((err) => console.error('Error: %s', err))
29
result = client.query(
q.day_of_month(q.time("2019-04-29T12:51:17Z"))
)
print(result)
29
try {
println(Await.result(
client.query(DayOfMonth(Time("2019-04-29T12:51:17Z"))),
5.seconds
))} catch {
case unknown: Throwable => println("Error: " + unknown.getMessage())
}
29
Was this article helpful?
We're sorry to hear that.
Tell us how we can improve!
Visit Fauna's Discourse forums
or email docs@fauna.com
Thank you for your feedback!