I have one column "MESSAGE REECEIVED FROM" in sql server. In my springboot application fetching the column names from Entity bean.
Declared column name as below in entity bean
@Column(name="[MESSAGES REECEIVED FROM]")
private String messagesReeceivedFrom = null;
and while connecting to the database, getting the error as below
SQL Error: 207, SQLState: S0001
Invalid column name 'REECEIVED'.
but while executing the same column in sql server query is executing.
Help me in interpreting the sql reserved keywords while calling through jpa