is there a way to select data from a table in the order that it was inserted?
something like:
I'm doing something like this now:
I'm not really sure how the select is sorting the results, but it isn't doing it
in the natural format.
If there isn't a specific way, I'll need to add another column with an autonumber or something so I can pull in that order later.
something like:
Code:
select firstname,lastname from customerList order by insertOrder
Code:
select * from motility where subID="123" and sampleID="abc"
in the natural format.
If there isn't a specific way, I'll need to add another column with an autonumber or something so I can pull in that order later.
Comment