I\'m trying to start spring boot project with MySQL database, but I have some problem with database. I try to start my application that, and server is running but hibernate don\
Ran into similar issue and found SupaMario's answer here.
In my case I had a table named orders but MySql threw the error as it seems to be a reserve table / keyword.
orders
I changed it to customer_order and it all worked fine.
customer_order