Asterix provides various classes of functions to support operations on numeric, string, spatial, and temporal data. This document explains how to use these functions.
Syntax:
abs(numeric_expression)
Computes the absolute value of the argument.
Arguments:
numeric_expression
: A int8
/int16
/int32
/int64
/float
/double
value.Return Value:
null
if the argument is a null
value.Example:
let $v1 := abs(2013) let $v2 := abs(-4036) let $v3 := abs(0) let $v4 := abs(float("-2013.5")) let $v5 := abs(double("-2013.593823748327284")) return { "v1": $v1, "v2": $v2, "v3": $v3, "v4": $v4, "v5": $v5 }
The expected result is:
{ "v1": 2013, "v2": 4036, "v3": 0, "v4": 2013.5f, "v5": 2013.5938237483274d }
Syntax:
ceiling(numeric_expression)
Computes the smallest (closest to negative infinity) number with no fractional part that is not less than the value of the argument. If the argument is already equal to mathematical integer, then the result is the same as the argument.
Arguments:
numeric_expression
: A int8
/int16
/int32
/int64
/float
/double
value.Return Value:
null
if the input is null
.Example:
let $v1 := ceiling(2013) let $v2 := ceiling(-4036) let $v3 := ceiling(0.3) let $v4 := ceiling(float("-2013.2")) let $v5 := ceiling(double("-2013.893823748327284")) return { "v1": $v1, "v2": $v2, "v3": $v3, "v4": $v4, "v5": $v5 }
The expected result is:
{ "v1": 2013, "v2": -4036, "v3": 1.0d, "v4": -2013.0f, "v5": -2013.0d }
Syntax:
floor(numeric_expression)
Computes the largest (closest to positive infinity) number with no fractional part that is not greater than the value. If the argument is already equal to mathematical integer, then the result is the same as the argument.
Arguments:
numeric_expression
: A int8
/int16
/int32
/int64
/float
/double
value.Return Value:
null
if the input is null
.Example:
let $v1 := floor(2013) let $v2 := floor(-4036) let $v3 := floor(0.8) let $v4 := floor(float("-2013.2")) let $v5 := floor(double("-2013.893823748327284")) return { "v1": $v1, "v2": $v2, "v3": $v3, "v4": $v4, "v5": $v5 }
The expected result is:
{ "v1": 2013, "v2": -4036, "v3": 0.0d, "v4": -2014.0f, "v5": -2014.0d }
Syntax:
round(numeric_expression)
Computes the number with no fractional part that is closest (and also closest to positive infinity) to the argument.
Arguments:
numeric_expression
: A int8
/int16
/int32
/int64
/float
/double
value.Return Value:
null
if the input is null
.Example:
let $v1 := round(2013) let $v2 := round(-4036) let $v3 := round(0.8) let $v4 := round(float("-2013.256")) let $v5 := round(double("-2013.893823748327284")) return { "v1": $v1, "v2": $v2, "v3": $v3, "v4": $v4, "v5": $v5 }
The expected result is:
{ "v1": 2013, "v2": -4036, "v3": 1.0d, "v4": -2013.0f, "v5": -2014.0d }
Syntax:
round-half-to-even(numeric_expression, [precision])
Computes the closest numeric value to numeric_expression
that is a multiple of ten to the power of minus precision
. precision
is optional and by default value 0
is used.
Arguments:
numeric_expression
: A int8
/int16
/int32
/int64
/float
/double
value.precision
: An optional integer field representing the number of digits in the fraction of the the resultReturn Value:
null
if the input is null
.Example:
let $v1 := round-half-to-even(2013) let $v2 := round-half-to-even(-4036) let $v3 := round-half-to-even(0.8) let $v4 := round-half-to-even(float("-2013.256")) let $v5 := round-half-to-even(double("-2013.893823748327284")) let $v6 := round-half-to-even(double("-2013.893823748327284"), 2) let $v7 := round-half-to-even(2013, 4) let $v8 := round-half-to-even(float("-2013.256"), 5) return { "v1": $v1, "v2": $v2, "v3": $v3, "v4": $v4, "v5": $v5, "v6": $v6, "v7": $v7, "v8": $v8 }
The expected result is:
{ "v1": 2013, "v2": -4036, "v3": 1.0d, "v4": -2013.0f, "v5": -2014.0d, "v6": -2013.89d, "v7": 2013, "v8": -2013.256f }
Syntax:
string-to-codepoint(string_expression)
Converts the string string_expression
to its code-based representation.
Arguments:
string_expression
: A string
that will be converted.Return Value:
OrderedList
of the code points for the string string_expression
.Syntax:
codepoint-to-string(list_expression)
Converts the ordered code-based representation list_expression
to the corresponding string.
Arguments:
list_expression
: An OrderedList
of code-points.Return Value:
string
representation of list_expression
.Example:
use dataverse TinySocial; let $s := "Hello ASTERIX!" let $l := string-to-codepoint($s) let $ss := codepoint-to-string($l) return {"codes": $l, "string": $ss}
The expected result is:
{ "codes": [ 72, 101, 108, 108, 111, 32, 65, 83, 84, 69, 82, 73, 88, 33 ], "string": "Hello ASTERIX!" }
Syntax:
contains(string_expression, substring_to_contain)
Checks whether the string string_expression
contains the string substring_to_contain
Arguments:
string_expression
: A string
that might contain the given substring.substring_to_contain
: A target string
that might be contained.Return Value:
boolean
value, true
if string_expression
contains substring_to_contain
, and false
otherwise.Note: An n-gram index can be utilized for this function.
Example:
use dataverse TinySocial; for $i in dataset('FacebookMessages') where contains($i.message, "phone") return {"mid": $i.message-id, "message": $i.message}
The expected result is:
{ "mid": 2, "message": " dislike iphone its touch-screen is horrible" } { "mid": 13, "message": " dislike iphone the voice-command is bad:(" } { "mid": 15, "message": " like iphone the voicemail-service is awesome" }
Syntax:
like(string_expression, string_pattern)
Checks whether the string string_expression
contains the string pattern string_pattern
. Compared to the contains
function, the like
function also supports regular expressions.
Arguments:
string_expression
: A string
that might contain the pattern or null
.string_pattern
: A pattern string
that might be contained or null
.Return Value:
boolean
value, true
if string_expression
contains the pattern string_pattern
, and false
otherwise.Example:
use dataverse TinySocial; for $i in dataset('FacebookMessages') where like($i.message, "%at&t%") return $i.message
The expected result is:
" can't stand at&t the network is horrible:(" " can't stand at&t its plan is terrible" " love at&t its 3G is good:)"
Syntax:
starts-with(string_expression, substring_to_start_with)
Checks whether the string string_expression
starts with the string substring_to_start_with
.
Arguments:
string_expression
: A string
that might start with the given string.substring_to_start_with
: A string
that might be contained as the starting substring.Return Value:
boolean
, returns true
if string_expression
starts with the string substring_to_start_with
, and false
otherwise.Example:
use dataverse TinySocial; for $i in dataset('FacebookMessages') where starts-with($i.message, " like") return $i.message
The expected result is:
" like samsung the plan is amazing" " like t-mobile its platform is mind-blowing" " like verizon the 3G is awesome:)" " like iphone the voicemail-service is awesome"
Syntax:
ends-with(string_expression, substring_to_end_with)
Checks whether the string string_expression
ends with the string substring_to_end_with
.
Arguments:
string_expression
: A string
that might end with the given string.substring_to_end_with
: A string
that might be contained as the ending substring.Return Value:
boolean
, returns true
if string_expression
ends with the string substring_to_end_with
, and false
otherwise.Example:
use dataverse TinySocial; for $i in dataset('FacebookMessages') where ends-with($i.message, ":)") return $i.message
The expected result is:
" love sprint its shortcut-menu is awesome:)" " like verizon the 3G is awesome:)" " love at&t its 3G is good:)"
Syntax:
string-concat(list_expression)
Concatenates a list of strings list_expression
into a single string.
Arguments:
list_expression
: An OrderedList
or UnorderedList
of string
s (could be null
) to be concatenated.Return Value:
string
value.Example:
let $i := "ASTERIX" let $j := " " let $k := "ROCKS!" return string-concat([$i, $j, $k])
The expected result is:
"ASTERIX ROCKS!"
Syntax:
string-join(list_expression, string_expression)
Joins a list of strings list_expression
with the given separator string_expression
into a single string.
Arguments:
list_expression
: An OrderedList
or UnorderedList
of strings (could be null
) to be joined.string_expression
: A string
as the separator.Return Value:
String
.Example:
use dataverse TinySocial; let $i := ["ASTERIX", "ROCKS~"] return string-join($i, "!! ")
The expected result is:
"ASTERIX!! ROCKS~"
Syntax:
lowercase(string_expression)
Converts a given string string_expression
to its lowercase form.
Arguments:
string_expression
: A string
to be converted.Return Value:
string
as the lowercase form of the given string_expression
.Example:
use dataverse TinySocial; let $i := "ASTERIX" return lowercase($i)
The expected result is:
asterix
uppercase(string_expression)
Converts a given string string_expression
to its uppercase form.
Arguments:
string_expression
: A string
to be converted.Return Value:
string
as the uppercase form of the given string_expression
.Example:
use dataverse TinySocial; let $i := "asterix" return uppercase($i)
The expected result is:
ASTERIX
Syntax:
uppercase(string_expression)
Converts a given string string_expression
to its uppercase form.
Arguments:
string_expression
: A string
to be converted.Return Value:
string
as the uppercase form of the given string_expression
.Example:
use dataverse TinySocial; let $i := "asterix" return uppercase($i)
The expected result is:
ASTERIX
Syntax:
matches(string_expression, string_pattern)
Checks whether the strings string_expression
matches the given pattern string_pattern
(A Java regular expression pattern).
Arguments:
string_expression
: A string
that might contain the pattern.string_pattern
: A pattern string
to be matched.Return Value:
boolean
, returns true
if string_expression
matches the pattern string_pattern
, and false
otherwise.Example:
use dataverse TinySocial; for $i in dataset('FacebookMessages') where matches($i.message, "dislike iphone") return $i.message
The expected result is:
" dislike iphone its touch-screen is horrible" " dislike iphone the voice-command is bad:("
Syntax:
replace(string_expression, string_pattern, string_replacement[, string_flags])
Checks whether the string string_expression
matches the given pattern string_pattern
, and replace the matched pattern string_pattern
with the new pattern string_replacement
.
Arguments:
string_expression
: A string
that might contain the pattern.string_pattern
: A pattern string
to be matched.string_replacement
: A pattern string
to be used as the replacement.string_flag
: (Optional) A string
with flags to be used during replace.Return Value:
string
that is obtained after the replacements.Example:
use dataverse TinySocial; for $i in dataset('FacebookMessages') where matches($i.message, " like iphone") return replace($i.message, " like iphone", "like android")
The expected result is:
"like android the voicemail-service is awesome"
Syntax:
string-length(string_expression)
Returns the length of the string string_expression
.
Arguments:
string_expression
: A string
or null
that represents the string to be checked.Return Value:
int64
that represents the length of string_expression
.Example:
use dataverse TinySocial; for $i in dataset('FacebookMessages') return {"mid": $i.message-id, "message-len": string-length($i.message)}
The expected result is:
{ "mid": 1, "message-len": 43 } { "mid": 2, "message-len": 44 } { "mid": 3, "message-len": 33 } { "mid": 4, "message-len": 43 } { "mid": 5, "message-len": 46 } { "mid": 6, "message-len": 43 } { "mid": 7, "message-len": 37 } { "mid": 8, "message-len": 33 } { "mid": 9, "message-len": 34 } { "mid": 10, "message-len": 50 } { "mid": 11, "message-len": 38 } { "mid": 12, "message-len": 52 } { "mid": 13, "message-len": 42 } { "mid": 14, "message-len": 27 } { "mid": 15, "message-len": 45 }
Syntax:
substring(string_expression, offset[, length])
Returns the substring from the given string string_expression
based on the given start offset offset
with the optional length
.
Arguments:
string_expression
: A string
to be extracted.offset
: An int64
as the starting offset of the substring in string_expression
.length
: (Optional) An int64
as the length of the substring.Return Value:
string
that represents the substring.Example:
use dataverse TinySocial; for $i in dataset('FacebookMessages') where string-length($i.message) > 50 return substring($i.message, 50)
The expected result is:
"G:("
Syntax:
substring-before(string_expression, string_pattern)
Returns the substring from the given string string_expression
before the given pattern string_pattern
.
Arguments:
string_expression
: A string
to be extracted.string_pattern
: A string
pattern to be searched.Return Value:
string
that represents the substring.Example:
use dataverse TinySocial; for $i in dataset('FacebookMessages') where contains($i.message, "iphone") return substring-before($i.message, "iphone")
The expected result is:
" dislike " " dislike " " like "
Syntax:
substring-after(string_expression, string_pattern)
Returns the substring from the given string string_expression
after the given pattern string_pattern
.
Arguments:
string_expression
: A string
to be extracted.string_pattern
: A string
pattern to be searched.Return Value:
string
that represents the substring.Example:
use dataverse TinySocial; for $i in dataset('FacebookMessages') where contains($i.message, "iphone") return substring-after($i.message, "iphone")
The expected result is:
" its touch-screen is horrible" " the voice-command is bad:(" " the voicemail-service is awesome"
Syntax:
count(list)
Gets the number of items in the given list.
Arguments:
list
: An orderedList
or unorderedList
containing the items to be counted, or a null
value.Return Value:
int64
value representing the number of items in the given list. 0i64
is returned if the input is null
.Example:
use dataverse TinySocial; let $l1 := ['hello', 'world', 1, 2, 3] let $l2 := for $i in dataset TwitterUsers return $i return {"count1": count($l1), "count2": count($l2)}
The expected result is:
{ "count1": 5i64, "count2": 4i64 }
Syntax:
avg(num_list)
Gets the average value of the items in the given list.
Arguments:
num_list
: An orderedList
or unorderedList
containing numeric or null values, or a null
value.Return Value:
double
value representing the average of the numbers in the given list. null
is returned if the input is null
, or the input list contains null
. Non-numeric types in the input list will cause an error.Example:
use dataverse TinySocial; let $l := for $i in dataset TwitterUsers return $i.friends_count return {"avg_friend_count": avg($l)}
The expected result is:
{ "avg_friend_count": 191.5d }
Syntax:
sum(num_list)
Gets the sum of the items in the given list.
Arguments:
num_list
: An orderedList
or unorderedList
containing numeric or null values, or a null
value.Return Value:
int8
-> int16
->int32
->int64
->float
->double
) among items. null
is returned if the input is null
, or the input list contains null
. Non-numeric types in the input list will cause an error.Example:
use dataverse TinySocial; let $l := for $i in dataset TwitterUsers return $i.friends_count return {"sum_friend_count": sum($l)}
The expected result is:
{ "sum_friend_count": 766 }
Syntax:
min(num_list), max(num_list)
Gets the min/max value of numeric items in the given list.
Arguments:
num_list
: An orderedList
or unorderedList
containing the items to be compared, or a null
value.Return Value:
int8
-> int16
->int32
->int64
->float
->double
) among items. null
is returned if the input is null
, or the input list contains null
. Non-numeric types in the input list will cause an error.Example:
use dataverse TinySocial; let $l := for $i in dataset TwitterUsers return $i. friends_count return {"min_friend_count": min($l), "max_friend_count": max($l)}
The expected result is:
{ "min_friend_count": 18, "max_friend_count": 445 }
Syntax:
sql-count(list)
Gets the number of non-null items in the given list.
Arguments:
list
: An orderedList
or unorderedList
containing the items to be counted, or a null
value.Return Value:
int64
value representing the number of non-null items in the given list. The value 0i64
is returned if the input is null
.Example:
let $l1 := ['hello', 'world', 1, 2, 3, null] return {"count": sql-count($l1)}
The expected result is:
{ "count": 5i64 }
Syntax:
sql-avg(num_list)
Gets the average value of the non-null items in the given list.
Arguments:
num_list
: An orderedList
or unorderedList
containing numeric or null values, or a null
value.Return Value:
double
value representing the average of the non-null numbers in the given list. The null
value is returned if the input is null
. Non-numeric types in the input list will cause an error.Example:
let $l := [1.2, 2.3, 3.4, 0, null] return {"avg": sql-avg($l)}
The expected result is:
{ "avg": 1.725d }
Syntax:
sql-sum(num_list)
Gets the sum of the non-null items in the given list.
Arguments:
num_list
: An orderedList
or unorderedList
containing numeric or null values, or a null
value.Return Value:
int8
-> int16
->int32
->int64
->float
->double
) among items. The value null
is returned if the input is null
. Non-numeric types in the input list will cause an error.Example:
let $l := [1.2, 2.3, 3.4, 0, null] return {"sum": sql-sum($l)}
The expected result is:
{ "sum": 6.9d }
Syntax:
sql-min(num_list), sql-max(num_list)
Gets the min/max value of the non-null numeric items in the given list.
Arguments:
num_list
: An orderedList
or unorderedList
containing the items to be compared, or a null
value.Return Value:
int8
-> int16
->int32
->int64
->float
->double
) among items. The value null
is returned if the input is null
. Non-numeric types in the input list will cause an error.Example:
let $l := [1.2, 2.3, 3.4, 0, null] return {"min": sql-min($l), "max": sql-max($l)}
The expected result is:
{ "min": 0.0d, "max": 3.4d }
Syntax:
create-point(x, y)
Creates the primitive type point
using an x
and y
value.
Arguments:
x
: A double
that represents the x-coordinate.y
: A double
that represents the y-coordinate.Return Value:
point
representing the ordered pair (x
, y
).Example:
use dataverse TinySocial; let $c := create-point(30.0,70.0) return {"point": $c}
The expected result is:
{ "point": point("30.0,70.0") }
Syntax:
create-line(point_expression1, point_expression2)
Creates the primitive type line
using point_expression1
and point_expression2
.
Arguments:
point_expression1
: A point
that represents the start point of the line.point_expression2
: A point
that represents the end point of the line.Return Value:
line
created using the points provided in point_expression1
and point_expression2
.Example:
use dataverse TinySocial; let $c := create-line(create-point(30.0,70.0), create-point(50.0,90.0)) return {"line": $c}
The expected result is:
{ "line": line("30.0,70.0 50.0,90.0") }
Syntax:
create-rectangle(point_expression1, point_expression2)
Creates the primitive type rectangle
using point_expression1
and point_expression2
.
Arguments:
point_expression1
: A point
that represents the lower-left point of the rectangle.point_expression2
: A point
that represents the upper-right point of the rectangle.Return Value:
rectangle
created using the points provided in point_expression1
and point_expression2
.Example:
use dataverse TinySocial; let $c := create-rectangle(create-point(30.0,70.0), create-point(50.0,90.0)) return {"rectangle": $c}
The expected result is:
{ "rectangle": rectangle("30.0,70.0 50.0,90.0") }
Syntax:
create-circle(point_expression, radius)
Creates the primitive type circle
using point_expression
and radius
.
Arguments:
point_expression
: A point
that represents the center of the circle.radius
: A double
that represents the radius of the circle.Return Value:
circle
created using the center point and the radius provided in point_expression
and radius
.Example:
use dataverse TinySocial; let $c := create-circle(create-point(30.0,70.0), 5.0) return {"circle": $c}
The expected result is:
{ "circle": circle("30.0,70.0 5.0") }
Syntax:
create-polygon(list_expression)
Creates the primitive type polygon
using the double values provided in the argument list_expression
. Each two consecutive double values represent a point starting from the first double value in the list. Note that at least six double values should be specified, meaning a total of three points.
Arguments:
list_expression
: An OrderedList of doubles representing the points of the polygon.Return Value:
polygon
, represents a spatial simple polygon created using the points provided in list_expression
.Example:
use dataverse TinySocial; let $c := create-polygon([1.0,1.0,2.0,2.0,3.0,3.0,4.0,4.0]) return {"polygon": $c}
The expected result is:
{ "polygon": polygon("1.0,1.0 2.0,2.0 3.0,3.0 4.0,4.0") }
Syntax:
get-x(point_expression) or get-y(point_expression)
Returns the x or y coordinates of a point point_expression
.
Arguments:
point_expression
: A point
.Return Value:
double
representing the x or y coordinates of the point point_expression
.Example:
use dataverse TinySocial; let $point := create-point(2.3,5.0) return {"x-coordinate": get-x($point), "y-coordinate": get-y($point)}
The expected result is:
{ "x-coordinate": 2.3d, "y-coordinate": 5.0d }
Syntax:
get-points(spatial_expression)
Returns an ordered list of the points forming the spatial object spatial_expression
.
Arguments:
spatial_expression
: A point
, line
, rectangle
, circle
, or polygon
.Return Value:
OrderedList
of the points forming the spatial object spatial_expression
.Example:
use dataverse TinySocial; let $line := create-line(create-point(100.6,99.4), create-point(-72.0,-76.9)) let $rectangle := create-rectangle(create-point(9.2,49.0), create-point(77.8,111.1)) let $polygon := create-polygon([1.0,1.0,2.0,2.0,3.0,3.0,4.0,4.0]) let $line_list := get-points($line) let $rectangle_list := get-points($rectangle) let $polygon_list := get-points($polygon) return {"line-first-point": $line_list[0], "line-second-point": $line_list[1], "rectangle-left-bottom-point": $rectangle_list[0], "rectangle-top-upper-point": $rectangle_list[1], "polygon-first-point": $polygon_list[0], "polygon-second-point": $polygon_list[1], "polygon-third-point": $polygon_list[2], "polygon-forth-point": $polygon_list[3]}
The expected result is:
{ "line-first-point": point("100.6,99.4"), "line-second-point": point("-72.0,-76.9"), "rectangle-left-bottom-point": point("9.2,49.0"), "rectangle-top-upper-point": point("77.8,111.1"), "polygon-first-point": point("1.0,1.0"), "polygon-second-point": point("2.0,2.0"), "polygon-third-point": point("3.0,3.0"), "polygon-forth-point": point("4.0,4.0") }
Syntax:
get-center(circle_expression) or get-radius(circle_expression)
Returns the center and the radius of a circle circle_expression
, respectively.
Arguments:
circle_expression
: A circle
.Return Value:
point
or double
, represent the center or radius of the circle circle_expression
.Example:
use dataverse TinySocial; let $circle := create-circle(create-point(6.0,3.0), 1.0) return {"circle-radius": get-radius($circle), "circle-center": get-center($circle)}
The expected result is:
{ "circle-radius": 1.0d, "circle-center": point("6.0,3.0") }
Syntax:
spatial-distance(point_expression1, point_expression2)
Returns the Euclidean distance between point_expression1
and point_expression2
.
Arguments:
point_expression1
: A point
.point_expression2
: A point
.Return Value:
double
as the Euclidean distance between point_expression1
and point_expression2
.Example:
use dataverse TinySocial; for $t in dataset('TweetMessages') let $d := spatial-distance($t.sender-location, create-point(30.0,70.0)) return {"point": $t.sender-location, "distance": $d}
The expected result is:
{ "point": point("47.44,80.65"), "distance": 20.434678857275934d } { "point": point("29.15,76.53"), "distance": 6.585089217315132d } { "point": point("37.59,68.42"), "distance": 7.752709203884797d } { "point": point("24.82,94.63"), "distance": 25.168816023007512d } { "point": point("32.84,67.14"), "distance": 4.030533463451212d } { "point": point("29.72,75.8"), "distance": 5.806754687430835d } { "point": point("39.28,70.48"), "distance": 9.292405501268227d } { "point": point("40.09,92.69"), "distance": 24.832321679617472d } { "point": point("47.51,83.99"), "distance": 22.41250097601782d } { "point": point("36.21,72.6"), "distance": 6.73231758015024d } { "point": point("46.05,93.34"), "distance": 28.325926286707734d } { "point": point("36.86,74.62"), "distance": 8.270671073135482d }
Syntax:
spatial-area(spatial_2d_expression)
Returns the spatial area of spatial_2d_expression
.
Arguments:
spatial_2d_expression
: A rectangle
, circle
, or polygon
.Return Value:
double
representing the area of spatial_2d_expression
.Example:
use dataverse TinySocial; let $circleArea := spatial-area(create-circle(create-point(0.0,0.0), 5.0)) return {"Area":$circleArea}
The expected result is:
{ "Area": 78.53981625d }
Syntax:
spatial-intersect(spatial_expression1, spatial_expression2)
Checks whether @arg1
and @arg2
spatially intersect each other.
Arguments:
spatial_expression1
: A point
, line
, rectangle
, circle
, or polygon
.spatial_expression2
: A point
, line
, rectangle
, circle
, or polygon
.Return Value:
boolean
representing whether spatial_expression1
and spatial_expression2
spatially overlap with each other.Example:
use dataverse TinySocial; for $t in dataset('TweetMessages') where spatial-intersect($t.sender-location, create-rectangle(create-point(30.0,70.0), create-point(40.0,80.0))) return $t
The expected result is:
{ "tweetid": "4", "user": { "screen-name": "NathanGiesen@211", "lang": "en", "friends_count": 39339, "statuses_count": 473, "name": "Nathan Giesen", "followers_count": 49416 }, "sender-location": point("39.28,70.48"), "send-time": datetime("2011-12-26T10:10:00.000Z"), "referred-topics": {{ "sprint", "voice-command" }}, "message-text": " like sprint the voice-command is mind-blowing:)" } { "tweetid": "7", "user": { "screen-name": "ChangEwing_573", "lang": "en", "friends_count": 182, "statuses_count": 394, "name": "Chang Ewing", "followers_count": 32136 }, "sender-location": point("36.21,72.6"), "send-time": datetime("2011-08-25T10:10:00.000Z"), "referred-topics": {{ "samsung", "platform" }}, "message-text": " like samsung the platform is good" } { "tweetid": "9", "user": { "screen-name": "NathanGiesen@211", "lang": "en", "friends_count": 39339, "statuses_count": 473, "name": "Nathan Giesen", "followers_count": 49416 }, "sender-location": point("36.86,74.62"), "send-time": datetime("2012-07-21T10:10:00.000Z"), "referred-topics": {{ "verizon", "voicemail-service" }}, "message-text": " love verizon its voicemail-service is awesome" }
Syntax:
spatial-cell(point_expression1, point_expression2, x_increment, y_increment)
Returns the grid cell that point_expression1
belongs to.
Arguments:
point_expression1
: A point
representing the point of interest that its grid cell will be returned.point_expression2
: A point
representing the origin of the grid.x_increment
: A double
, represents X increments.y_increment
: A double
, represents Y increments.Return Value:
rectangle
representing the grid cell that point_expression1
belongs to.Example:
use dataverse TinySocial; for $t in dataset('TweetMessages') group by $c := spatial-cell($t.sender-location, create-point(20.0,50.0), 5.5, 6.0) with $t let $num := count($t) return { "cell": $c, "count": $num}
The expected result is:
{ "cell": rectangle("20.0,92.0 25.5,98.0"), "count": 1i64 } { "cell": rectangle("25.5,74.0 31.0,80.0"), "count": 2i64 } { "cell": rectangle("31.0,62.0 36.5,68.0"), "count": 1i64 } { "cell": rectangle("31.0,68.0 36.5,74.0"), "count": 1i64 } { "cell": rectangle("36.5,68.0 42.0,74.0"), "count": 2i64 } { "cell": rectangle("36.5,74.0 42.0,80.0"), "count": 1i64 } { "cell": rectangle("36.5,92.0 42.0,98.0"), "count": 1i64 } { "cell": rectangle("42.0,80.0 47.5,86.0"), "count": 1i64 } { "cell": rectangle("42.0,92.0 47.5,98.0"), "count": 1i64 } { "cell": rectangle("47.5,80.0 53.0,86.0"), "count": 1i64 }
AsterixDB supports queries with different similarity functions, including edit distance and Jaccard.
Syntax:
edit-distance(expression1, expression2)
Returns the edit distance of expression1
and expression2
.
Arguments:
expression1
: A string
or a homogeneous OrderedList
of a comparable item type.expression2
: The same type as expression1
.Return Value:
int64
that represents the edit distance between expression1
and expression2
.Note: An n-gram index can be utilized for this function.
Example:
use dataverse TinySocial; for $user in dataset('FacebookUsers') let $ed := edit-distance($user.name, "Suzanna Tilson") where $ed <= 2 return $user
The expected result is:
{ "id": 7, "alias": "Suzanna", "name": "SuzannaTillson", "user-since": datetime("2012-08-07T10:10:00.000Z"), "friend-ids": {{ 6 }}, "employment": [ { "organization-name": "Labzatron", "start-date": date("2011-04-19"), "end-date": null } ] }
Syntax:
edit-distance-check(expression1, expression2, threshold)
Checks whether expression1
and expression2
have an edit distance within a given threshold. The “check” version of edit distance is faster than the "non-check" version because the former can detect whether two items satisfy a given threshold using early-termination techniques, as opposed to computing their real distance. Although possible, it is not necessary for the user to write queries using the “check” versions explicitly, since a rewrite rule can perform an appropriate transformation from a “non-check” version to a “check” version.
Arguments:
expression1
: A string
or a homogeneous OrderedList
of a comparable item type.expression2
: The same type as expression1
.threshold
: An int64
that represents the distance threshold.Return Value:
OrderedList
with two items:boolean
value representing whether expression1
and expression2
are similar.int64
that represents the edit distance of expression1
and expression2
if it is within the threshold, or 0 otherwise.Note: An n-gram index can be utilized for this function.
Example:
use dataverse TinySocial; for $user in dataset('FacebookUsers') let $ed := edit-distance-check($user.name, "Suzanna Tilson", 2) where $ed[0] return $ed[1]
The expected result is:
2
edit-distance-contains(expression1, expression2, threshold)
Checks whether expression1
contains expression2
with an edit distance within a given threshold.
Arguments:
expression1
: A string
or a homogeneous OrderedList
of a comparable item type.expression2
: The same type as expression1
.threshold
: An int32
that represents the distance threshold.Return Value:
OrderedList
with two items:boolean
value representing whether expression1
can contain expression2
.int32
that represents the required edit distance for expression1
to contain expression2
if the first item is true.Note: An n-gram index can be utilized for this function.
Example: let $i := edit-distance-contains("happy","hapr",2) return $i;
The expected result is:
[ true, 1 ]
Syntax:
similarity-jaccard(list_expression1, list_expression2)
Returns the Jaccard similarity of list_expression1
and list_expression2
.
Arguments:
list_expression1
: An UnorderedList
or OrderedList
.list_expression2
: An UnorderedList
or OrderedList
.Return Value:
float
that represents the Jaccard similarity of list_expression1
and list_expression2
.Note: A keyword index can be utilized for this function.
Example:
use dataverse TinySocial; for $user in dataset('FacebookUsers') let $sim := similarity-jaccard($user.friend-ids, [1,5,9]) where $sim >= 0.6f return $user
The expected result is:
{ "id": 3, "alias": "Emory", "name": "EmoryUnk", "user-since": datetime("2012-07-10T10:10:00.000Z"), "friend-ids": {{ 1, 5, 8, 9 }}, "employment": [ { "organization-name": "geomedia", "start-date": date("2010-06-17"), "end-date": date("2010-01-26") } ] } { "id": 10, "alias": "Bram", "name": "BramHatch", "user-since": datetime("2010-10-16T10:10:00.000Z"), "friend-ids": {{ 1, 5, 9 }}, "employment": [ { "organization-name": "physcane", "start-date": date("2007-06-05"), "end-date": date("2011-11-05") } ] }
Syntax:
similarity-jaccard-check(list_expression1, list_expression2, threshold)
Checks whether list_expression1
and list_expression2
have a Jaccard similarity greater than or equal to threshold. Again, the “check” version of Jaccard is faster than the "non-check" version.
Arguments:
list_expression1
: An UnorderedList
or OrderedList
.list_expression2
: An UnorderedList
or OrderedList
.threshold
: A float
that represents the similarity threshold.Return Value:
OrderedList
with two items:boolean
value representing whether list_expression1
and list_expression2
are similar.float
that represents the Jaccard similarity of list_expression1
and list_expression2
if it is greater than or equal to the threshold, or 0 otherwise.Note: A keyword index can be utilized for this function.
Example:
use dataverse TinySocial; for $user in dataset('FacebookUsers') let $sim := similarity-jaccard-check($user.friend-ids, [1,5,9], 0.6f) where $sim[0] return $sim[1]
The expected result is:
0.75f 1.0f
"~=
" is syntactic sugar for expressing a similarity condition with a given similarity threshold.
The similarity function and threshold for "~=
" are controlled via "set" directives.
The "~=
" operator returns a boolean
value that represents whether the operands are similar.
Example for Jaccard similarity:
use dataverse TinySocial; set simfunction "jaccard"; set simthreshold "0.6f"; for $user in dataset('FacebookUsers') where $user.friend-ids ~= [1,5,9] return $user
The expected result is:
{ "id": 3, "alias": "Emory", "name": "EmoryUnk", "user-since": datetime("2012-07-10T10:10:00.000Z"), "friend-ids": {{ 1, 5, 8, 9 }}, "employment": [ { "organization-name": "geomedia", "start-date": date("2010-06-17"), "end-date": date("2010-01-26") } ] } { "id": 10, "alias": "Bram", "name": "BramHatch", "user-since": datetime("2010-10-16T10:10:00.000Z"), "friend-ids": {{ 1, 5, 9 }}, "employment": [ { "organization-name": "physcane", "start-date": date("2007-06-05"), "end-date": date("2011-11-05") } ] }
Example for edit-distance similarity:
use dataverse TinySocial; set simfunction "edit-distance"; set simthreshold "2"; for $user in dataset('FacebookUsers') where $user.name ~= "Suzanna Tilson" return $user
The expected output is:
{ "id": 7, "alias": "Suzanna", "name": "SuzannaTillson", "user-since": datetime("2012-08-07T10:10:00.000Z"), "friend-ids": {{ 6 }}, "employment": [ { "organization-name": "Labzatron", "start-date": date("2011-04-19"), "end-date": null } ] }
Syntax:
word-tokens(string_expression)
Returns a list of word tokens of string_expression
.
Arguments:
string_expression
: A string
that will be tokenized.Return Value:
OrderedList
of string
word tokens.Example:
use dataverse TinySocial; for $t in dataset('TweetMessages') let $tokens := word-tokens($t.message-text) where $t.send-time >= datetime('2012-01-01T00:00:00') return { "tweetid": $t.tweetid, "word-tokens": $tokens }
The expected result is:
{ "tweetid": "9", "word-tokens": [ "love", "verizon", "its", "voicemail", "service", "is", "awesome" ] }
Syntax:
get-year/get-month/get-day/get-hour/get-minute/get-second/get-millisecond(temporal_expression)
Accessors for accessing fields in a temporal value
Arguments:
temporal_expression
: a temporal value represented as one of the following types: date
, datetime
, time
, and duration
.Return Value:
int64
value representing the field to be extracted.Example:
let $c1 := date("2010-10-30") let $c2 := datetime("1987-11-19T23:49:23.938") let $c3 := time("12:23:34.930+07:00") let $c4 := duration("P3Y73M632DT49H743M3948.94S") return {"year": get-year($c1), "month": get-month($c2), "day": get-day($c1), "hour": get-hour($c3), "min": get-minute($c4), "second": get-second($c2), "ms": get-millisecond($c4)}
The expected result is:
{ "year": 2010, "month": 11, "day": 30, "hour": 5, "min": 28, "second": 23, "ms": 94 }
Syntax:
adjust-datetime-for-timezone(datetime_expression, string_expression)
Adjusts the given datetime datetime_expression
by applying the timezone information string_expression
.
Arguments:
datetime_expression
: A datetime
value to be adjusted.string_expression
: A string
representing the timezone information.Return Value:
string
value representing the new datetime after being adjusted by the timezone information.Example:
use dataverse TinySocial; for $i in dataset('TweetMessages') return {"adjusted-send-time": adjust-datetime-for-timezone($i.send-time, "+08:00"), "message": $i.message-text}
The expected result is:
{ "adjusted-send-time": "2008-04-26T18:10:00.000+08:00", "message": " love t-mobile its customization is good:)" } { "adjusted-send-time": "2010-05-13T18:10:00.000+08:00", "message": " like verizon its shortcut-menu is awesome:)" } { "adjusted-send-time": "2006-11-04T18:10:00.000+08:00", "message": " like motorola the speed is good:)" } { "adjusted-send-time": "2011-12-26T18:10:00.000+08:00", "message": " like sprint the voice-command is mind-blowing:)" } { "adjusted-send-time": "2006-08-04T18:10:00.000+08:00", "message": " can't stand motorola its speed is terrible:(" } { "adjusted-send-time": "2010-05-07T18:10:00.000+08:00", "message": " like iphone the voice-clarity is good:)" } { "adjusted-send-time": "2011-08-25T18:10:00.000+08:00", "message": " like samsung the platform is good" } { "adjusted-send-time": "2005-10-14T18:10:00.000+08:00", "message": " like t-mobile the shortcut-menu is awesome:)" } { "adjusted-send-time": "2012-07-21T18:10:00.000+08:00", "message": " love verizon its voicemail-service is awesome" } { "adjusted-send-time": "2008-01-26T18:10:00.000+08:00", "message": " hate verizon its voice-clarity is OMG:(" } { "adjusted-send-time": "2008-03-09T18:10:00.000+08:00", "message": " can't stand iphone its platform is terrible" } { "adjusted-send-time": "2010-02-13T18:10:00.000+08:00", "message": " like samsung the voice-command is amazing:)" }
Syntax:
adjust-time-for-timezone(time_expression, string_expression)
Adjusts the given time time_expression
by applying the timezone information string_expression
.
Arguments:
time_expression
: A time
value to be adjusted.string_expression
: A string
representing the timezone information.Return Value:
string
value representing the new time after being adjusted by the timezone information.Example:
use dataverse TinySocial; for $i in dataset('TweetMessages') return {"adjusted-send-time": adjust-time-for-timezone(time-from-datetime($i.send-time), "+08:00"), "message": $i.message-text}
The expected result is:
{ "adjusted-send-time": "18:10:00.000+08:00", "message": " love t-mobile its customization is good:)" } { "adjusted-send-time": "18:10:00.000+08:00", "message": " like verizon its shortcut-menu is awesome:)" } { "adjusted-send-time": "18:10:00.000+08:00", "message": " like motorola the speed is good:)" } { "adjusted-send-time": "18:10:00.000+08:00", "message": " like sprint the voice-command is mind-blowing:)" } { "adjusted-send-time": "18:10:00.000+08:00", "message": " can't stand motorola its speed is terrible:(" } { "adjusted-send-time": "18:10:00.000+08:00", "message": " like iphone the voice-clarity is good:)" } { "adjusted-send-time": "18:10:00.000+08:00", "message": " like samsung the platform is good" } { "adjusted-send-time": "18:10:00.000+08:00", "message": " like t-mobile the shortcut-menu is awesome:)" } { "adjusted-send-time": "18:10:00.000+08:00", "message": " love verizon its voicemail-service is awesome" } { "adjusted-send-time": "18:10:00.000+08:00", "message": " hate verizon its voice-clarity is OMG:(" } { "adjusted-send-time": "18:10:00.000+08:00", "message": " can't stand iphone its platform is terrible" } { "adjusted-send-time": "18:10:00.000+08:00", "message": " like samsung the voice-command is amazing:)" }
Syntax:
calendar-duration-from-datetime(datetime_expression, duration_expression)
Gets a user-friendly representation of the duration duration_expression
based on the given datetime datetime_expression
.
Arguments:
datetime_expression
: A datetime
value to be used as the reference time point.duration_expression
: A duration
value to be converted.Return Value:
duration
value with the duration as duration_expression
but with a user-friendly representation.Example:
use dataverse TinySocial; for $i in dataset('TweetMessages') where $i.send-time > datetime("2011-01-01T00:00:00") return {"since-2011": subtract-datetime($i.send-time, datetime("2011-01-01T00:00:00")), "since-2011-user-friendly": calendar-duration-from-datetime($i.send-time, subtract-datetime($i.send-time, datetime("2011-01-01T00:00:00")))}
The expected result is:
{ "since-2011": duration("P359DT10H10M"), "since-2011-user-friendly": duration("P11M23DT10H10M") } { "since-2011": duration("P236DT10H10M"), "since-2011-user-friendly": duration("P7M23DT10H10M") } { "since-2011": duration("P567DT10H10M"), "since-2011-user-friendly": duration("P1Y6M18DT10H10M") }
Syntax:
get-year-month-duration/get-day-time-duration(duration_expression)
Extracts the correct duration
subtype from duration_expression
.
Arguments:
duration_expression
: A duration
value to be converted.Return Value:
year-month-duration
value or a day-time-duration
value.Example:
let $i := get-year-month-duration(duration("P12M50DT10H")) return $i;
The expected result is:
year-month-duration("P1Y")
Syntax:
months-from-year-month-duration/milliseconds-from-day-time-duration(duration_expression)
Extracts the number of months or the number of milliseconds from the duration
subtype.
Arguments:
duration_expression
: A duration
of the correct subtype.Return Value:
int64
representing the number or months/milliseconds.Example:
let $i := months-from-year-month-duration(get-year-month-duration(duration("P5Y7MT50M"))) return $i;
The expected result is:
67
Syntax:
duration-from-months/duration-from-ms(number_expression)
Creates a duration
from number_expression
.
Arguments:
number_expression
: An int64
representing the number of months/millisecondsReturn Value:
duration
containing number_expression
value for months/millisecondsExample:
let $i := duration-from-months(8) return $i;
The expected result is:
duration("P8M")
Syntax:
duration-from-interval(interval_expression)
Creates a duration
from interval_expression
.
Arguments:
interval_expression
: An interval
valueReturn Value:
duration
repesenting the time in the interval_expression
Example:
let $itv1 := interval-from-date("2010-10-30", "2010-12-21") let $itv2 := interval-from-datetime("2012-06-26T01:01:01.111", "2012-07-27T02:02:02.222") let $itv3 := interval-from-time("12:32:38", "20:29:20") return { "dr1" : duration-from-interval($itv1), "dr2" : duration-from-interval($itv2), "dr3" : duration-from-interval($itv3), "dr4" : duration-from-interval(null) }
The expected result is:
{ "dr1": day-time-duration("P52D"), "dr2": day-time-duration("P31DT1H1M1.111S"), "dr3": day-time-duration("PT7H56M42S"), "dr4": null }
Syntax:
current-date()
Gets the current date.
Arguments: None
Return Value:
date
value of the date when the function is called.Syntax:
current-time()
Get the current time
Arguments: None
Return Value:
time
value of the time when the function is called.Syntax:
current-datetime()
Get the current datetime
Arguments: None
Return Value:
datetime
value of the datetime when the function is called.Example:
{"current-date": current-date(), "current-time": current-time(), "current-datetime": current-datetime()}
The expected result is:
{ "current-date": date("2013-04-06"), "current-time": time("00:48:44.093Z"), "current-datetime": datetime("2013-04-06T00:48:44.093Z") }
Syntax:
get-date-from-datetime(datetime_expression)
Gets the date value from the given datetime value datetime_expression
.
Arguments:
datetime_expression
: A datetime
value to be extracted from.Return Value:
date
value from the datetime.Syntax:
get-time-from-datetime(datetime_expression)
Get the time value from the given datetime value datetime_expression
Arguments:
datetime_expression
: A datetime
value to be extracted fromReturn Value:
time
value from the datetime.Example:
use dataverse TinySocial; for $i in dataset('TweetMessages') where $i.send-time > datetime("2011-01-01T00:00:00") return {"send-date": get-date-from-datetime($i.send-time), "send-time": get-time-from-datetime($i.send-time)}
The expected result is:
{ "send-date": date("2011-12-26"), "send-time": time("10:10:00.000Z") } { "send-date": date("2011-08-25"), "send-time": time("10:10:00.000Z") } { "send-date": date("2012-07-21"), "send-time": time("10:10:00.000Z") }
Syntax:
day-of-week(date_expression)
Finds the day of the week for a given date (1-7)
Arguments:
date_expression
: A date
value (Can also be a datetime
)Return Value:
int8
representing the day of the week (1-7)Example:
let $i := day-of-week( datetime("2012-12-30T12:12:12.039Z")) return $i;
The expected result is:
7
Syntax:
date-from-unix-time-in-days(numeric_expression)
Gets a date representing the time after numeric_expression
days since 1970-01-01.
Arguments:
numeric_expression
: A int8
/int16
/int32
/int64
value representing the number of days.Return Value:
date
value as the time after numeric_expression
days since 1970-01-01.Syntax:
datetime-from-unix-time-in-ms(numeric_expression)
Gets a datetime representing the time after numeric_expression
milliseconds since 1970-01-01T00:00:00Z.
Arguments:
numeric_expression
: A int8
/int16
/int32
/int64
value representing the number of milliseconds.Return Value:
datetime
value as the time after numeric_expression
milliseconds since 1970-01-01T00:00:00Z.Syntax:
datetime-from-unix-time-in-secs(numeric_expression)
Gets a datetime representing the time after numeric_expression
seconds since 1970-01-01T00:00:00Z.
Arguments:
numeric_expression
: A int8
/int16
/int32
/int64
value representing the number of seconds.Return Value:
datetime
value as the time after numeric_expression
seconds since 1970-01-01T00:00:00Z.datetime-from-date-time(date_expression,time_expression)
date_expression
and time_expression
date_expression
: A date
valuetime_expression
A time
valuedatetime
value by combining date_expression
and time_expression
Syntax:
time-from-unix-time-in-ms(numeric_expression)
Gets a time representing the time after numeric_expression
milliseconds since 00:00:00.000Z.
Arguments:
numeric_expression
: A int8
/int16
/int32
/int64
value representing the number of milliseconds.Return Value:
time
value as the time after numeric_expression
milliseconds since 00:00:00.000Z.Example:
use dataverse TinySocial; let $d := date-from-unix-time-in-days(15800) let $dt := datetime-from-unix-time-in-ms(1365139700000) let $t := time-from-unix-time-in-ms(3748) return {"date": $d, "datetime": $dt, "time": $t}
The expected result is:
{ "date": date("2013-04-05"), "datetime": datetime("2013-04-05T05:28:20.000Z"), "time": time("00:00:03.748Z") }
parse-date/parse-time/parse-datetime(date_expression,formatting_expression)
Creates a date/time/date-time
value by treating date_expression
with formatting formatting_expression
Arguments:
date_expression
: A string
value representing the date/time/datetime
.formatting_expression
A string
value providing the formatting for date_expression
.Characters used to create date expression:h
hoursm
minutess
secondsn
millisecondsa
am/pmz
timezoneY
yearM
monthD
dayW
weekday-
, '
, /
, .
, ,
, T
seperators for both time and dateReturn Value:
date/time/date-time
value corresponding to date_expression
Example:
let $i := parse-time("30:30","m:s") return $i;
The expected result is:
time("00:30:30.000Z")
print-date/print-time/print-datetime(date_expression,formatting_expression)
Creates a string
representing a date/time/date-time
value of the date_expression
using the formatting formatting_expression
Arguments:
date_expression
: A date/time/datetime
value.formatting_expression
A string
value providing the formatting for date_expression
. Characters used to create date expression:h
hoursm
minutess
secondsn
millisecondsa
am/pmz
timezoneY
yearM
monthD
dayW
weekday-
, '
, /
, .
, ,
, T
seperators for both time and dateReturn Value:
string
value corresponding to date_expression
Example:
let $i := print-time(time("00:30:30.000Z"),"m:s") return $i;
The expected result is:
"30:30"
Syntax:
get-interval-start/get-interval-end(interval)
Gets the start/end of the given interval.
Arguments:
interval
: the interval to be accessed.Return Value:
time
, date
, or datetime
(depending on the time instances of the interval) representing the starting or ending time.Example:
let $itv := interval-start-from-date("1984-01-01", "P1Y") return {"start": get-interval-start($itv), "end": get-interval-end($itv)}
The expected result is:
{ "start": date("1984-01-01"), "end": date("1985-01-01") }
Syntax:
get-interval-start-date/get-interval-start-datetime/get-interval-start-time/get-interval-end-date/get-interval-end-datetime/get-interval-end-time(interval)
Gets the start/end of the given interval for the specific date/datetime/time type.
Arguments:
interval
: the interval to be accessed.Return Value:
time
, date
, or datetime
(depending on the function) representing the starting or ending time.Example:
let $itv1 := interval-start-from-date("1984-01-01", "P1Y") let $itv2 := interval-start-from-datetime("1984-01-01T08:30:00.000", "P1Y1H") let $itv3 := interval-start-from-time("08:30:00.000", "P1H") return {"start": get-interval-start-date($itv1), "end": get-interval-end-date($itv1), "start": get-interval-start-datetime($itv2), "end": get-interval-end-datetime($itv2), "start": get-interval-start-time($itv3), "end": get-interval-end-time($itv3)}
The expected result is:
{ "start": date("1984-01-01"), "end": date("1985-01-01"), "start": datetime("1984-01-01T08:30:00.000"), "end": datetime("1984-02-01T09:30:00.000"), "start": date("08:30:00.000"), "end": time("09:30:00.000") }
Syntax:
get-overlapping-interval(interval_expression_1, interval_expression_2)
Gets the start/end of the given interval for the specific date/datetime/time type.
Arguments:
interval_expression_1
: an interval
valueinterval_expression_2
: an interval
valueReturn Value:
interval
that is overlapping interval_expression_1
and interval_expression_2
. If interval_expression_1
and interval_expression_2
do not overlap null
is returned. Note each interval must be of the same type.Example:
{ "overlap1": get-overlapping-interval(interval-from-time(time("11:23:39"), time("18:27:19")), interval-from-time(time("12:23:39"), time("23:18:00"))), "overlap2": get-overlapping-interval(interval-from-time(time("12:23:39"), time("18:27:19")), interval-from-time(time("07:19:39"), time("09:18:00"))), "overlap3": get-overlapping-interval(interval-from-date(date("1980-11-30"), date("1999-09-09")), interval-from-date(date("2013-01-01"), date("2014-01-01"))), "overlap4": get-overlapping-interval(interval-from-date(date("1980-11-30"), date("2099-09-09")), interval-from-date(date("2013-01-01"), date("2014-01-01"))), "overlap5": get-overlapping-interval(interval-from-datetime(datetime("1844-03-03T11:19:39"), datetime("2000-10-30T18:27:19")), interval-from-datetime(datetime("1989-03-04T12:23:39"), datetime("2009-10-10T23:18:00"))), "overlap6": get-overlapping-interval(interval-from-datetime(datetime("1989-03-04T12:23:39"), datetime("2000-10-30T18:27:19")), interval-from-datetime(datetime("1844-03-03T11:19:39"), datetime("1888-10-10T23:18:00"))) }
The expected result is:
{ "overlap1": interval-time("12:23:39.000Z, 18:27:19.000Z"), "overlap2": null, "overlap3": null, "overlap4": interval-date("2013-01-01, 2014-01-01"), "overlap5": interval-datetime("1989-03-04T12:23:39.000Z, 2000-10-30T18:27:19.000Z"), "overlap6": null }
See the Allen's Relations.
Syntax:
interval-bin(time-to-bin, time-bin-anchor, duration-bin-size)
Return the interval
value representing the bin containing the time-to-bin
value.
Arguments:
time-to-bin
: a date/time/datetime value representing the time to be binned.time-bin-anchor
: a date/time/datetime value representing an anchor of a bin starts. The type of this argument should be the same as the first time-to-bin
argument.duration-bin-size
: the duration value representing the size of the bin, in the type of year-month-duration or day-time-duration. The type of this duration should be compatible with the type of time-to-bin
, so that the arithmetic operation between time-to-bin
and duration-bin-size
is well-defined. Currently AsterixDB supports the following arithmetic operations:Return Value:
interval
value representing the bin containing the time-to-bin
value. Note that the internal type of this interval value should be the same as the time-to-bin
type.Example:
let $c1 := date("2010-10-30") let $c2 := datetime("-1987-11-19T23:49:23.938") let $c3 := time("12:23:34.930+07:00") return { "bin1": interval-bin($c1, date("1990-01-01"), year-month-duration("P1Y")), "bin2": interval-bin($c2, datetime("1990-01-01T00:00:00.000Z"), year-month-duration("P6M")), "bin3": interval-bin($c3, time("00:00:00"), day-time-duration("PD1M")), "bin4": interval-bin($c2, datetime("2013-01-01T00:00:00.000"), day-time-duration("PT24H"))
}
The expected result is:
{ "bin1": interval-date("2010-01-01, 2011-01-01"), "bin2": interval-datetime("-1987-07-01T00:00:00.000Z, -1986-01-01T00:00:00.000Z"), "bin3": interval-time("05:23:00.000Z, 05:24:00.000Z"), "bin4": interval-datetime("-1987-11-19T00:00:00.000Z, -1987-11-20T00:00:00.000Z")}
Syntax:
interval-from-date(string_expression1, string_expression2)
Constructor function for the interval
type by parsing two date strings.
Arguments:
string_expression1
: The string
value representing the starting date.string_expression2
: The string
value representing the ending date.Return Value:
interval
value between the two dates.Example:
{"date-interval": interval-from-date("2012-01-01", "2013-04-01")}
The expected result is:
{ "date-interval": interval-date("2012-01-01, 2013-04-01") }
Syntax:
interval-from-time(string_expression1, string_expression2)
Constructor function for the interval
type by parsing two time strings.
Arguments:
string_expression1
: The string
value representing the starting time.string_expression2
: The string
value representing the ending time.Return Value:
interval
value between the two times.Example:
{"time-interval": interval-from-time("12:23:34.456Z", "233445567+0800")}
The expected result is:
{ "time-interval": interval-time("12:23:34.456Z, 15:34:45.567Z") }
Syntax:
interval-from-datetime(string_expression1, string_expression2)
Constructor function for interval
type by parsing two datetime strings.
Arguments:
string_expression1
: The string
value representing the starting datetime.string_expression2
: The string
value representing the ending datetime.Return Value:
interval
value between the two datetimes.Example:
{"datetime-interval": interval-from-datetime("2012-01-01T12:23:34.456+08:00", "20130401T153445567Z")}
The expected result is:
{ "datetime-interval": interval-datetime("2012-01-01T04:23:34.456Z, 2013-04-01T15:34:45.567Z") }
Syntax:
interval-start-from-date/time/datetime(date/time/datetime, duration)
Construct an interval
value by the given starting date
/time
/datetime
and the duration
that the interval lasts.
Arguments:
date/time/datetime
: a string
representing a date
, time
or datetime
, or a date
/time
/datetime
value, representing the starting time point.duration
: a string
or duration
value representing the duration of the interval. Note that duration cannot be negative value.Return Value:
interval
value representing the interval starting from the given time point with the length of duration.Example:
let $itv1 := interval-start-from-date("1984-01-01", "P1Y") let $itv2 := interval-start-from-time(time("02:23:28.394"), "PT3H24M") let $itv3 := interval-start-from-datetime("1999-09-09T09:09:09.999", duration("P2M30D")) return {"interval1": $itv1, "interval2": $itv2, "interval3": $itv3}
The expectecd result is:
{ "interval1": interval-date("1984-01-01, 1985-01-01"), "interval2": interval-time("02:23:28.394Z, 05:47:28.394Z"), "interval3": interval-datetime("1999-09-09T09:09:09.999Z, 1999-12-09T09:09:09.999Z") }
Return Value:
interval
value representing the bin containing the time-to-bin
value. Note that the internal type of this interval value should be the same as the time-to-bin
type.Syntax:
overlap-bins(interval_expression, time-bin-anchor, duration-bin-size)
Returns an ordered list of interval
values representing each bin that is overlapping the interval_expression
.
Arguments:
interval_expression
: an interval
valuetime-bin-anchor
: a date/time/datetime value representing an anchor of a bin starts. The type of this argument should be the same as the first time-to-bin
argument.duration-bin-size
: the duration value representing the size of the bin, in the type of year-month-duration or day-time-duration. The type of this duration should be compatible with the type of time-to-bin
, so that the arithmetic operation between time-to-bin
and duration-bin-size
is well-defined. Currently AsterixDB supports the following arithmetic operations:Return Value:
interval
values representing each bin that is overlapping the interval_expression
. Note that the internal type as time-to-bin
and duration-bin-size
.Example:
let $itv1 := interval-from-time(time("17:23:37"), time("18:30:21")) let $itv2 := interval-from-date(date("1984-03-17"), date("2013-08-22")) let $itv3 := interval-from-datetime(datetime("1800-01-01T23:59:48.938"), datetime("2015-07-26T13:28:30.218")) return { "timebins": overlap-bins($itv1, time("00:00:00"), day-time-duration("PT30M")), "datebins": overlap-bins($itv2, date("1990-01-01"), year-month-duration("P20Y")), "datetimebins": overlap-bins($itv3, datetime("1900-01-01T00:00:00.000"), year-month-duration("P100Y")) }
The expected result is:
{ "timebins": [ interval-time("17:00:00.000Z, 17:30:00.000Z"), interval-time("17:30:00.000Z, 18:00:00.000Z"), interval-time("18:00:00.000Z, 18:30:00.000Z"), interval-time("18:30:00.000Z, 19:00:00.000Z") ], "datebins": [ interval-date("1970-01-01, 1990-01-01"), interval-date("1990-01-01, 2010-01-01"), interval-date("2010-01-01, 2030-01-01") ], "datetimebins": [ interval-datetime("1800-01-01T00:00:00.000Z, 1900-01-01T00:00:00.000Z"), interval-datetime("1900-01-01T00:00:00.000Z, 2000-01-01T00:00:00.000Z"), interval-datetime("2000-01-01T00:00:00.000Z, 2100-01-01T00:00:00.000Z") ] }
Syntax:
create-uuid()
Generates a uuid
.
Arguments:
Return Value:
uuid
.Syntax:
is-null(var)
Checks whether the given variable is a null
value.
Arguments:
var
: A variable (any type is allowed).Return Value:
boolean
on whether the variable is a null
or not.Example:
for $m in ['hello', 'world', null] where not(is-null($m)) return $m
The expected result is:
"hello" "world"
Syntax:
is-system-null(var)
Checks whether the given variable is a system null
value.
Arguments:
var
: A variable (any type is allowed).Return Value:
boolean
on whether the variable is a system null
or not.Syntax:
len(list_expression)
Returns the length of the list list_expression.
Arguments:
list_expression
: An OrderedList
, UnorderedList
or null
, represents the list need to be checked.Return Value:
Int32
that represents the length of list_expression.Example:
use dataverse TinySocial; let $l := ["ASTERIX", "Hyracks"] return len($l)
The expected result is:
2
Syntax:
not(var)
Inverts a boolean
value
Arguments:
var
: A boolean
(or null
)Return Value:
boolean
, the inverse of var
. returns null
if var
is nullExample:
for $m in ['hello', 'world', null] where not(is-null($m)) return $m
The expected result is:
"hello" "world"
Syntax:
range(start_numeric_expression, end_numeric_expression)
Generates a series of int64
values based start the start_numeric_expression
until the end_numeric_expression
. The range
fucntion must be used list argument of a for
expression.
Arguments:
start_numeric_expression
: A int8
/int16
/int32
/int64
value representing the start value.end_numeric_expression
: A int8
/int16
/int32
/int64
value representing the max final value.Return Value:
uuid
.Example:
for $i in range(0, 3) return $i;
The expected result is:
[ 0 , 1 , 2 , 3 ]
Syntax:
switch-case(condition, case1, case1-result, case2, case2-result, ..., default, default-result )
Switches amongst a sequence of cases and returns the result of the first matching case. If no match is found, the result of the default case is returned.
Arguments:
condition
: A variable (any type is allowed).caseI/default
: A variable (any type is allowed).caseI/default-result
: A variable (any type is allowed).Return Value:
caseI-result
if condition
matches caseI
, otherwise default-result
.Example 1:
switch-case("a", "a", 0, "x", 1, "y", 2, "z", 3 )
The expected result is:
0
Example 2:
switch-case("a", "x", 1, "y", 2, "z", 3 )
The expected result is:
3