I have a table in sql server 2008, I need to identify the order of insertion in the table without using identity field. and also this table is not containing any datetime datatype field. pls suggest me the solution.
Share
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.
You can’t.
There is no implied or built-in sort order to a table. A table is just a collection of rows. A query on the table has an an order (for example, earliest to latest) if you use an
ORDER BY something.You’ve said you have nothing like this. You have no options.