Currently, by using the following, it is inserted after the last row.
INSERT INTO `table` (`text1`,`text2`,`text3`) VALUES('a', 'b', 'c')
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Rows in tables don’t have an inherent order. The order is only specified by how you query it. If you don’t specifiy how to order it, the database engine will just return the rows in a way that is most efficient depending on the layout of your table.
Your question can therefore not be answered, because there is no top and bottom in a database table. There is just data.
Also see this very very similar question and its answer
What you want to do is maybe specify a new column named
orderingand write your ordering information there and then query the table using