Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
569 B
Plaintext
Raw Permalink Normal View History

{
"name": "AND",
"type": "operator",
"groups": ["Operators"],
2022-04-07 17:39:59 +02:00
"description": "Returns TRUE when conditions a and b are true.",
"arguments": [{
"arg": "a",
"description": "condition"
}, {
"arg": "b",
"description": "condition"
}],
"examples": [{
"expression": "TRUE AND TRUE",
"returns": "TRUE"
}, {
"expression": "TRUE AND FALSE",
"returns": "FALSE"
}, {
"expression": "4 = 2+2 AND 1 = 1",
"returns": "TRUE"
}, {
"expression": "4 = 2+2 AND 1 = 2",
"returns": "FALSE"
}],
"tags": ["condition"]
}