I have an application to create a simple SQL table with the following columns:
- FirstName
- LastName
- Age
- Gender
And the column order should be the same. But I am getting different order than expected. I am using spring boot and JPA. I have the model class with the same order, but some how I'm not getting the expected output. Can anyone please help on this? Thanks in advance!
Expected order should be (FirstName, LastName, Age, Gender)
. Getting the shuffled order.