skip to Main Content

Quering JSON in MySQL

I have a table say t_records which has a JSON type column say col_json which can have value like below { "1": { "value": null, "comment": null, "timestamp": null, "guidelineId": null, "pushedToSnowflakePipeline": "yes" }, "2": { "value": null, "comment": null,…

VIEW QUESTION

I am using MongoDB as a database in Spring Boot. But I am getting a problem while adding the data

These are my Entities:- This is my rider Rider entity package com.app.enities; import lombok.*; import org.springframework.data.annotation.Id; import org.springframework.data.mongodb.core.mapping.Document; import java.util.List; @Document(collection = "Rider") @Getter @Setter @AllArgsConstructor @NoArgsConstructor @ToString(callSuper = true) public class Rider { @Id private String id; private String…

VIEW QUESTION
Back To Top
Search