Ok. Just a scenario.
I got about 100 smart homes. Every smart home has a different amount of door sensors, temperature sensors, humidity sensors. Every house could add or remove some of them. For this example every temp & hum sensor uploads every 10 minutes (asynchron) their current value (via MQTT) to a server (144 Values/per day/per sensor). And all door sensors upload their state (open, closed) everytime the state changes.
In my study I just got a little insight in relational database (MySQL) and I think that is the wrong model for my purpose (but I have nearly forget everything). So could you just give me tip like:
"Search for "relational Database". "MySQL". This works fine for your case because..."
I want a database where i could add a smart home: with informations like city, street, inhabitant,.... And to this smart home I add sensors like (temp1, temp2, temp3, temp4, door1, door2, hum1). Important: I want to be able to add and remove sensors. and for every Sensor I want the data stored like this:
temp1
Date Temperature
01.01.2016 09:42 22.2°C
01.01.2016 09:52 21.2°C
01.01.2016 10:02 21.5°C
01.01.2016 10:42 21.7°C
01.01.2016 10:42 21.9°C
01.01.2016 10:42 21.8°C
01.01.2016 10:42 22.1°C
is this a object-orient-database?
Would it be possible to get the History of the last seven days from smarthome45.door7
greetings from germany
Edit:
"Unclear. What is your question ? Please edit." – kebs I don't have much experience in databases. I read some summarys of the different database models but I still don't know, which of them would fit for my project. So I just hoped, that someone who has some experience in databases could give me some advices. Because for me it looks like I have a database in a database.