1
0
Fork 0

Docs: Data model -> Data models, note that NOT_NULL() is equal to SQL's COALESCE()

This commit is contained in:
Simran Brucherseifer 2016-08-11 19:20:37 +02:00
parent e0800cfd9b
commit 0de1a20f4a
3 changed files with 6 additions and 5 deletions

View File

@ -6,11 +6,12 @@
`NOT_NULL(alternative, ...) → value`
Return the first alternative that is not *null*, and *null* if all alternatives
are *null* themselves.
Return the first element that is not *null*, and *null* if all alternatives
are *null* themselves. It is also known as `COALESCE()` in SQL.
- **alternative** (any, *repeatable*): input of arbitrary type
- returns **value** (any):
- returns **value** (any): first non-null parameter, or *null* if all arguments
are *null*
!SUBSECTION FIRST_LIST()

View File

@ -1,4 +1,4 @@
!CHAPTER Data model & modeling
!CHAPTER Data models & modeling
This chapter introduces ArangoDB's core concepts and covers

View File

@ -21,7 +21,7 @@
* [Data models](Scalability/DataModels.md)
* [Limitations](Scalability/Limitations.md)
#
* [Data model & modeling](DataModeling/README.md)
* [Data models & modeling](DataModeling/README.md)
# * [Collections](FirstSteps/CollectionsAndDocuments.md) #TODO
* [Concepts](DataModeling/Concepts.md)
* [Databases](DataModeling/Databases/README.md)