|
|
Predicates
A predicate is a single conditional expression which evaluates to either true, false or unknown. Predicates are used in constructing search conditions, see Search Conditions.
Predicate Syntax
The general predicate syntax is shown below:
Each individual predicate construction is explained in more detail in the following sections.
Mimer SQL Engine
Mimer SQL Engine does only support thevalue-expressionpart of therow-expressionsyntax. (E.g. multi-expression row-expressions are not supported.)The Basic Predicate
A basic predicate compares a value with one and only one other value, and has the syntax:
The comparison operators,
comp-operator, are described in Comparison and Relational Operators.The expressions on either side of the comparison operator must have compatible data types, see Comparisons.
Within the context of a basic predicate, a
select-expressionmust result in either an empty set or a single value.The result of the predicate is unknown if either of the expressions used evaluates to
NULL, or if theselect-expressionused results in an empty result set.A comparison involving row expressions requires that the two row expressions have the same number of elements, and that each element in the first row expression is comparable with the corresponding element in the second row expression.
The comparison will be done from left to right and will continue until all elements have been compared or the predicate is false.
As an example, consider this predicate
(a1,a2,a3) < (b1,b2,b3)a1 < b1 or (a1 <= b1 and a2 < b2) or (a1 <= b1 and a2 <= b2 and a3 < b3)(1,date '1956-04-23', false) < (1,date '1956-04-23', true)would evaluate to TRUE since false is less than true.
Null values are handled analogously with comparisons with single values. Thus
(1,cast(null as int)) < (1,2)(1,cast(null as int)) < (2,2)would become true since the second elements are never compared in this case.
Row-expression examples
select * from tabA where (c1, c2) = (select k1, k2 from tabB fetch 1); select * from tabA where (abs(c1), c2) > (c3, lower(c4));The Quantified Predicate
A quantified predicate compares an expression with a set of values addressed by a subselect (as opposed to a basic predicate which compares two single-valued expressions).
The form of the quantified expression is:
The comparison operators,
comp-operator, are described in Comparison and Relational Operators.Within the context of a quantified predicate, a
select-expressionmust result in either an empty set or a set of single values.ALL
The result is true if the select-specification results in an empty set or if the comparison is true for every value returned by the
select-expression.The result is false if the comparison is false for at least one value returned by the
select-expression.The result is unknown if any of the values returned by the
select-expressionis NULL and no value is false.ANY or SOME
The keywords
ANYandSOMEare equivalent.The result is true if the comparison is true for at least one value returned by the
select-expression.The result is false if the select results in an empty set or if the comparison is false for every value returned by the
select-expression.The result is unknown if any of the values returned by the select is
NULLand no value is true.Quantified predicates may always be replaced by alternative formulations using
EXISTS, which can often clarify the meaning of the predicates.The IN Predicate
The
INpredicate tests whether a value is contained in a set of discrete values and has the form:If the set of values on the right hand side of the comparison is given as an explicit list, an
INpredicate may always be expressed in terms of a series of basic predicates linked by one of the logical operatorsANDorOR:
IN predicate
Equivalent basic predicates
x IN (a,b,c) x = a OR x = b OR x = c x NOT IN (a,b,c) x <> a AND x <> b AND x <> cIf the set of values is given as a
select-expression, anINpredicate is equivalent to a quantified predicate:
IN predicate
Equivalent quantified predicates
x IN (subselect) x = ANY (subselect) x NOT IN (subselect) x <> ALL (subselect)The result of the
INpredicate is unknown if the equivalent predicates give an unknown result.Note: NOT IN is undefined if the subselect's result contains a NULL value. E.g. SELECT * FROM tab WHERE 1 NOT IN (3, <null>, 4) will return an empty result set.
The BETWEEN Predicate
A
BETWEENpredicate tests whether or not a value is within a range of values (including the given limits).The
BETWEENpredicate can always be expressed in terms of basic predicates.If neither
SYMMETRICnorASYMMETRICis specified, thenASYMMETRICis implicit.Examples
All expressions in the predicate must have compatible data types.
The result of the predicate is unknown if the equivalent basic predicates give an unknown result.
The LIKE Predicate
The
LIKEpredicate compares the value in a string expression with a character string pattern which may contain wildcard characters (meta-characters).The
string-valueon the left hand side of theLIKEoperator must be a string expression.The
character-patternon the right hand side of theLIKEoperator is a string expression.The escape
character-valuemust be a string expression of length 1. To search for the escape character itself it must appear twice in immediate succession in the like pattern.Meta-characters/Wildcards
The following meta-characters (wildcards) may be used in the
character-pattern:
_stands for any single character
%stands for any sequence of zero or more characters.Note: Wildcard characters are only used as such in LIKE predicates. In any other context, the characters _ and % have their exact values.
Escape Characters
The optional escape character is used to allow matching of the special characters
_and%. When the escape character prefixes_and%, they are interpreted without any special meaning.An escape character used in a pattern string may only be followed by another escape character or one of the wildcard characters, unless it is itself escaped (i.e. preceded by an escape character).
Examples
A
LIKEpredicate where the pattern string does not contain any wildcard characters is essentially equivalent to a basic predicate using the=operator.The comparison strings in the
LIKEpredicate are not conceptually padded with blanks, in contrast to the basic comparison.
'artist ' LIKE 'artist 'is true
'artist ' LIKE 'artist%'is true
'artist ' LIKE 'artist'is falseBEGINS function
LIKE predicates, addressing the "begins with" functionality, are very common.
However, when a parameter marker is used for the LIKE pattern, the SQL compiler can not determine the LIKE pattern characteristics, and possible optimizations will not be applied. The built-in function
BEGINSwill overcome this issue.Examples
BEGINS function
Is equivalent to
BEGINS(col,'AB') col LIKE 'AB%' BEGINS(col,?),
where ? contains 'XYZ' col LIKE 'XYZ%'Regular Expressions
The
REGEXP_MATCHpredicate compares the value in a string expression with a character string pattern which may contain different meta-characters.Compared to
LIKE, the regular expression provides a much more flexible way to match strings of text, such as complex patterns of characters.Regular expression constructs:
Quantifiers
X? X, once or not at all X* X, zero or more times X+ X, one or more times X{n} X, exactly n times X{n,} X, at least n times X{n,m} X, at least n but not more than m timesExamples
regexp_match(search_string,'abc')The regexp_match function will return TRUE if the
search_stringanywhere has the sequenceabc. Note the difference with the like predicate where the same criteria would need to be expressed assearch_string like '%abc%'Escape of meta characters are done using a backslash character:
regexp_match(search_string,'\[abc\]')would be true if
search_stringanywhere contains the string[abc], (including the square brackets).By using the boundary characters
^and$it is possible to specify that a search string should start with or end with some specific characters. E.g.regexp_match(search_string,'^Mimer')would return true if the
search_stringstarted with the lettersMimer. For this type of searches, the database will consider using an index if appropriate.The regexp_match function is collation aware. Thus
regexp_match('AAlborg' collate danish_1,'ålborg')regexp_match('AAlborg' collate danish_2,'ålborg')is false since a collation for danish will match
AAtoÅ, but the level 1 collation is case insensitive which the level 2 collation is not.This far, all of the examples given, can also be expressed with the like predicate. The following examples will deal with ranges and quantifiers which can be used to specify more complex search patterns.
To search for non-printable characters the regular expression
'[\x{0}-\x{1B}]'To find strings beginning with
AnorA, regardless of case, followed by a space and one or more arbitrary characters the pattern would be'^(A|an)|A|n .+''[a-zA-Z]{3}.[0-9]{3}'would match a string containing three occurrences of a letter between
aandzorAandZ, followed by an arbitrary character and three consecutive digits.General information about the different classes for Unicode categories can be found at http://www.unicode.org/reports/tr18/ and http://www.unicode.org/reports/tr44/. Please note that these documents cover lots of functionality not supported by Mimer SQL.
The NULL Predicate
The
NULLpredicate is used to test if the specified expression is theNULLvalue, and has the form:The result of the
NULLpredicate is never unknown.Evaluation rules for the NULL predicate:
The use of composite expressions in
NULLpredicates provides a shorthand for testing whether any of the operands isNULL.Thus the predicate
A=B IS NULLis an alternative toA IS NULL OR B IS NULL.Note: The actual operator(s) used in expressions in NULL predicates is irrelevant since all operations involving a NULL value evaluate to the NULL value.
The
NULLpredicate is the only way to test for the presence of theNULLvalue in a column, since all other predicates where at least one of the operands isNULLevaluate to unknown.The EXISTS Predicate
The
EXISTSpredicate tests whether the set of values addressed by aselect-specificationis empty or not, and has the form:The result of the predicate is true if the
select-expressiondoes not result in an empty set. Otherwise the result of the predicate is false. A set containing onlyNULLvalues is not empty. The result is never unknown.The
EXISTSpredicate is the only predicate which does not compare a value with one or more other values. The columns selected in theselect-expressionof anEXISTSpredicate are irrelevant. Most commonly, theSELECT *shorthand is used.The
EXISTSpredicate may be negated in the construction of search conditions. Observe however thatNOT EXISTSpredicates must be handled with care, particularly if empty result sets arise in the selection condition.Examples
Consider the four following examples, and note particularly that the last example is true if all guests have undefined names:
Example 1
EXISTS (SELECT * FROM BOOK_GUEST WHERE GUEST = 'DATE')Example 2
NOT EXISTS (SELECT * FROM BOOK_GUEST WHERE GUEST = 'DATE')Example 3
EXISTS (SELECT * FROM BOOK_GUEST WHERE NOT GUEST = 'DATE')Example 4
NOT EXISTS (SELECT * FROM BOOK_GUEST WHERE NOT GUEST = 'DATE')requires that no guest may not be called DATE, i.e. every guest must be called DATE (or be
NULL).The OVERLAPS Predicate
The
OVERLAPSpredicate tests whether two `events' cover a common point in time or not, and has the form:Each of the two events specified on either side of the
OVERLAPSkeyword is a period of time between two specified points on the time-line. The two points can be specified as a pair of datetime values or as one datetime value and anINTERVALoffset.The first column in each row value expression must be a
DATE,TIMEorTIMESTAMPand the value in the first column of the first event must be comparable, see Datetime Assignment Rules, to the value in the first column of the second event.The second column in each row value expression may be either a
DATE,TIMEorTIMESTAMPthat is comparable with the value in the first column or anINTERVALwith a precision that allows it to be added to the value in the first column.The value in the first column of each row value expression defines one of the points on the time-line for the event.
If the value in the second column of the row value expression is a datetime, it defines the other point on the time-line for the event.
If the value in the second column of the row value expression is an
INTERVAL, the other point on the time-line for the event is defined by adding the values in the two column of the row value to expression together.Either of the two points may be the earlier point in time.
If the value in the first column of the row value expression is the
NULLvalue, then this is assumed to be the later point in time.The result of
(S1,T1) OVERLAPS (S2,T2)is the result of the following expression:(S1 > S2 AND NOT (S1 >= T2 AND T1 >= T2)) OR (S2 > S1 AND NOT (S2 >= T1 AND T2 >= T1)) OR (S1 = S2 AND (T1 <> T2 OR T1 = T2))Standard Compliance
This section summarizes standard compliance concerning predicates.
|
Mimer Information Technology AB Voice: +46 18 780 92 00 Fax: +46 18 780 92 40 info@mimer.se |
|
|