📜  OrientDB-函数

📅  最后修改于: 2020-11-26 05:35:29             🧑  作者: Mango


本章介绍了OrientDB中不同类型的函数的完整参考。下表定义了功能列表,按功能分类。

图函数

尝试一些图形函数以及以下查询。

执行以下查询以从所有车辆顶点获取所有传出顶点。

orientdb {db = demo}>SELECT out() from Vehicle

如果上面的查询成功执行,您将获得以下输出。

---+----------+--------- 
 # | @class   | out 
---+----------+--------- 
 0 | Vehicle  | #11:2 
 1 | Vehicle  | #13:1 
 2 | Vehicle  | #13:4 
---+----------+--------- 

执行以下查询以获取来自顶点#11:3的传入和传出顶点。

orientdb {db = demo}>SELECT both() FROM #11:3 

如果上面的查询成功执行,您将获得以下输出。

---+----------+--------+------- 
 # | @class   | out    | in  
---+----------+--------+------- 
 0 | Vehicle  | #13:2  | #10:2   
 ---+----------+-------+-------

数学函数

使用以下查询尝试一些数学函数。

执行以下查询以获取所有雇员的薪金总和。

orientdb {db = demo}>SELECT SUM(salary) FROM Employee 

如果上面的查询成功执行,您将获得以下输出。

---+----------+--------- 
 # | @CLASS   | sum 
---+----------+--------- 
 0 | null     | 150000 
---+----------+---------

执行以下查询以获取所有员工的平均工资。

orientdb {db = demo}>SELECT avg(salary) FROM Employee

如果上面的查询成功执行,您将获得以下输出。

---+----------+--------- 
 # | @CLASS   | avg 
---+----------+--------- 
 0 | null     | 25 
---+----------+--------- 

集合功能

使用以下查询尝试一些收集功能。

执行以下查询以获取一组教师,即第9堂课。

orientdb {db = demo}>SELECT ID, set(teacher.id) AS teacherID from classess where class_id = 9 

如果上面的查询成功执行,您将获得以下输出。

---+----------+--------+-------------------------- 
 # | @CLASS   | id     | TeacherID 
---+----------+--------+-------------------------- 
 0 | null     | 9     |   1201, 1202, 1205, 1208 
---+----------+-------+---------------------------

杂项功能

使用以下查询尝试一些其他功能。

执行以下查询以了解如何执行if表达式。

orientdb {db = demo}> SELECT if(eval("name = 'satish'"), "My name is satish", 
"My name is not satish") FROM Employee

如果上面的查询成功执行,您将获得以下输出。

----+--------+----------------------- 
#   |@CLASS  | IF 
----+--------+----------------------- 
0   |null    |My name is satish  
1   |null    |My name is not satish 
2   |null    |My name is not satish  
3   |null    |My name is not satish  
4   |null    |My name is not satish  
----+--------+------------------------ 

执行以下查询以获取系统日期。

orientdb {db = demo}> SELECT SYSDATE() FROM Employee

如果上面的查询成功执行,您将获得以下输出。

----+--------+----------------------- 
#   |@CLASS  | SYSDATE 
----+--------+----------------------- 
0   |null    |2016-02-10 12:05:06 
1   |null    |2016-02-10 12:05:06 
2   |null    |2016-02-10 12:05:06 
3   |null    |2016-02-10 12:05:06 
4   |null    |2016-02-10 12:05:06 
----+--------+------------------------ 

通过彻底使用此函数,您可以轻松地处理OrientDB数据。