Forgot Password,

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

You must login to ask a question.

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

databaseanswers.net Latest Questions

I have an object Event(Long id,String name, LocalDateTime start, LocalDateTime stop, Desk desk(Long id, String name) And i want to save at the database with a Create method : @PostMapping("/flexoffice/events/create") @ResponseStatus(HttpStatus.ACCEPTED) public Event create(@RequestBody Event newEvent){ // It checks if ...

  • 0
Clara
Beginner

I have a legacy MariaDB database that saves the historical data of our temperature and humidity sensors in the following way id date value tag 1 2021-11-10 08:08:13 21.3 temp 2 2021-11-10 08:08:13 52.7 hum 3 2021-11-10 09:08:13 23.3 temp 4 2021-11-10 09:08:13 57.7 hum I want to extract this data in JSON with the following format: [{ ts: 2021-11-10 08:08:13, temp: ...