79507310

Date: 2025-03-13 18:35:09
Score: 1.5
Natty:
Report link

The problem is how you have named the `Player_Stats` table.

You can rename the table using snake_case for example 'player_stats' or by changing the value of the name property in the @Table annotation as indicated in another answer to @Table(name="`Player_Stats`") .

I recommend to you to change the table name and change it in the @Table annotation too.

Steps to do it:

  1. ALTER TABLE "Player_Stats" RENAME TO player_stats;

  2. @Table(name="player_stats")

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Table
  • User mentioned (0): @Table
  • Low reputation (1):
Posted by: KSatWood