LATEST SOLUTION 2025
Try to use it like this and i guarantee you that this will surely work add this line in application.properties
spring.jpa.hibernate.naming.physical-strategy=org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
@Column(name = ""resellerName"") private String resellerName;
by adding that line you are send the name of table in quotes as if you don't send that in quotes then sql server by default convert it into lowerCase and replace space with _
Thank You