Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
Can you define different Logical Operators in AQL?
Home
ArangoDB
Can you define different Logical Operators in AQL?
0
votes
asked
Jul 17, 2021
in
ArangoDB
by
sharadyadav1986
Can you define different Logical Operators in AQL?
operators
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jul 17, 2021
by
sharadyadav1986
Below are the three main logical operator in AQL
a) AND or &&:-It is a logical AND operator and below is example
5>2 && 24!=10
b) Or or ||:-It is a logical OR operator and below is example
5>3 || 4!0
c) NOT or !
20!=19
...