I'm working on a database interface and need the answer of the following question:
Will SELECT * FROM some_table
always return the results in the same order in MySQL?
I'm working on a database interface and need the answer of the following question:
Will SELECT * FROM some_table
always return the results in the same order in MySQL?
By default it returns the order by primary_key(if you do not provide any order by clause)