Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
coolsamson7 committed Oct 15, 2024
2 parents 59e7bac + 93acbd5 commit 41635af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,13 +137,13 @@ finally {
The solution is pretty straight forward. Entities are stored as a combination of three technical tables
* `ENTITY` a table referencing the entity definition and a generated primary key
* `PROPERTY` a table that will store single attributes of an entity
* `RELATION` a bridge table expressing object relations
* `RELATIONS` a bridge table expressing object relations

The property table defines the columns

* `TYPE` the id of the entity structure
* `ENTITY` the id of the corresponding entity
* `PROPERTY` the property name
* `NAME` the property name

and a number of columns that are able to store payload data with respect to the supported low-level data types
* `STRING_VALUE` a string value
Expand Down Expand Up @@ -189,7 +189,7 @@ select
from PROPERTY p2_0
where
p2_0.TYPE="person"
and p2_0.ATTRIBUTE="age"
and p2_0.NAME="age"
and p2_0.INT_VALUE=58))
order by
p1_0.ENTITY
Expand Down

0 comments on commit 41635af

Please sign in to comment.