mirror of https://gitee.com/bigwinds/arangodb
Docs: Data model -> Data models, note that NOT_NULL() is equal to SQL's COALESCE()
This commit is contained in:
parent
e0800cfd9b
commit
0de1a20f4a
|
@ -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()
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
!CHAPTER Data model & modeling
|
||||
!CHAPTER Data models & modeling
|
||||
|
||||
This chapter introduces ArangoDB's core concepts and covers
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue