Is there a way I can make mysql return results from a Member database by the order I ask it by in the WHERE command?
SELECT *
FROM Members
WHERE MemberID = \"6
no.
you must specify an ORDER BY clause to get things into any repeatable order.
If you can construct some logic that specifies the order then you can include that in the ORDER BY otherwise, you cannot.
You may consider adding another data construct to map your 'random' values to a sequence or other ordering value, then using that.