91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iTop中的OQL的語法格式

發布時間:2020-05-22 09:56:09 來源:億速云 閱讀:884 作者:Leah 欄目:系統運維

iTop中OQL是什么?今天小編給大家分享的是iTop中的OQL的詳細介紹,相信大部分人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,話不多說,一起往下看吧。

iTop的OQL(object query language)只支持一種類型,即查詢語句,也就是SQL查詢中的Select語句。OQL用于過濾或查詢,可在iTop中用于郵件通知、審計規則等。OQL的返回值限于一個對象或者一組iTop對象。iTop將OQL最終翻譯成對應的SQL Select語句,所以可以將OQL看做是SQL Select的一個子集,功能上不如SQL語句那么靈活,但足以應付iTop中各種操作。注意,OQL中的SQL保留字都必須大寫,語法大小寫敏感,所以每個對象的大小寫必須準確。
OQL語法格式非常簡單,形式如下,

          SELECT
          [output_specification FROM]
          class_reference
          [class_joined]
          [WHERE expression]
          [UNION oql_query]

其中各項參數解釋如下,

1. [output_specification FROM] , 此為可選項,當使用了多個對象或者別名時才需要用到。
如:

SELECT p1 FROM Person as p1, 此處p1為Person的別名。

或者類似于:

SELECT p1,t1 FROM Person JOIN lnkPersonToTeam AS t1 ON t1.person_id=p1.id

2. class_reference, 查詢的對象名,如上例中的Person。當不使用別名時,可以直接使用如下形式獲取數據

>SELECT Person

則iTop自動從Person對象表中獲取數據

如果iTop對象名或要使用的別名與SQL保留字沖突,則對象名或別名必須用``包裝起來。如,

SELECT `Union`。

3. [class_joined],如上面的例子,描述需要關聯的其他對象。這個等于SQL語句的JOIN。具體格式為JOIN object2 ON object1.attribute1 [操作符] object2.attirbute1,其中操作符如下,

=, BELOW, BELOW STRICT, ABOVE or ABOVE STRICT.

其中BELOW和ABOVE相關的幾個操作符用于當對象1和對象2有從屬關系時。比如iTop中的服務和子服務。

4. [WHERE expression],與SQL的WHERE語句一樣的功能,expression支持的語法和函數下面再進行描述。

5. [UNION oql_query], 與SQL的UNION的語句一樣的功能。其中oql_query只要符合OQL語法即可。但此處的OQL返回的對象應該與主語句一致。

WHERE表達式語法,
WHERE表達式可以由幾個部分組成,即字符串、操作符、函數,最終形成一個布爾結果值,實現數據篩選。這個跟SQL的WHERE子句功能一致。

操作符表如下,

OperatorDescription
ANDLogical AND
ORLogical OR
/Division operator
=Equality operator
>=Greater than or equal operator
>Greater than operator
<=Less than or equal operator
<Less than operator
-Substraction operator
!=, <>Non-equality operator
LIKESimple pattern matching
NOT LIKENegation of simple pattern matching
INList operator
NOT INNegation of list operator
&New in 2.0.1 Bitwise operator “and”. This operator is different from the “logical” operator “AND” since it operates on every bit of each number.
New in 2.0.1 Bitwise operator “or”. This operator is different from the “logical” operator “OR” since it operates on every bit of each number.
^New in 2.0.1 Bitwise operator “xor”.
<<New in 2.0.1 Bitwise left shift
>>New in 2.0.1 Bitwise right shift
REGEXPRegular expression
MATCHESNew in 2.6.0 Fulltext match against a string. This operator only works with attributes of type TagSet. The supported syntax is attribute MATCHES 'code1 code2'

函數列表如下,

Function nameDescriptionExamples
COALESCEReturn the first non-NULL argumentCOALESCE(field1, field2, 'Undefined')
CONCATReturn concatenated stringCONCAT(firstname, ' ', lastname)
CURRENT_DATEReturn the current dateCURRENT_DATE()
DATEExtract the date part of a date or datetime expressionDATE()
DATE_ADDAdd time values (intervals) to a date value. See allowed interval units belowDATE_ADD(NOW(), INTERVAL 1 HOUR)
DATE_FORMATFormat date as specifiedDATE_FORMAT('2009-10-04 22:23:00', '%W %M %Y')
DATE_SUBSubstract time values (intervals) from a date value. See allowed interval units belowDATE_SUB(NOW(), INTERVAL 5 MINUTE)
DAYReturn the day of the month (0-31)DAY(DATE())
ELTReturn string at index numberELT(index, 'string1', 'string2', 'string3')
FLOORReturn the largest integer value not greater than the argumentFLOOR(12.356)
FROM_DAYSConvert a day number to a dateFROM_DAYS(12345)
IFIf/else constructIF(a=b, 'equals', 'differs')
INET_ATONReturn the numeric value of an IP addressINET_ATON('15.15.121.12')
INET_NTOAReturn the IP address from a numeric valueINET_NTOA(1231654)
ISNULLISNULL(field1)
MONTHReturn the month from the date passedMONTH(DATE())
NOWReturn the current date and timeNOW()
ROUNDRound the argumentROUND(12.356, 2)
SUBSTRReturn the substring as specifiedSUBSTR('abcdef', 2, 3)
TIMEExtract the time portion of the expression passedTIME()
TO_DAYSReturn the date argument converted to daysTO_DAYS('2009-05-01')
TRIMRemove leading and trailing spacesTRIM('  blah  ')
YEARReturn the year from the date passedYEAR(DATE())

其他說明,
current_contact和current_user可以作為兩個與當前登錄用戶相關的通用變量,從而可以在表達式中進行使用,使用格式如下,

:current_contact→attribute  where 'attribute' is any code attribute of the Contact class
:current_user→attribute where 'attribute' is any code attribute of the User class

如:
SELECT UserRequest WHERE agent_id = :current_contact->id AND status NOT IN ('closed', 'resolved')

看完上述內容,你們對iTop中的OQL大概了解了嗎?如果想了解更多相關文章內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

西藏| 焉耆| 财经| 江源县| 安阳市| 长海县| 彰武县| 西吉县| 西峡县| 淮安市| 邢台县| 武威市| 上蔡县| 苏尼特右旗| 德格县| 宁都县| 疏附县| 静海县| 龙岩市| 禄丰县| 黄骅市| 滦平县| 香河县| 台北市| 吴桥县| 天气| 万荣县| 汕尾市| 吴川市| 潜江市| 建德市| 缙云县| 兰溪市| 隆林| 闻喜县| 金堂县| 彭州市| 铁岭市| 聂拉木县| 双柏县| 清流县|