I have an issue I really don't understand. In fact, I have a database of movies where there's a table for actors,containing two colums (movie id and name).
For example, then I enter the movie id of Django Unchained, the first result is Jamie Fox (the main actor). But then I enter, this sql query (i would expect to get Jamie Fox, Christoph and Leonardo):
SELECT * FROM LesActeurs WHERE film_id=68718 ORDER BY acteur LIMIT 3
But I get 3 actors by alphabetical order. Do You Know how could I mimic the DB Browser order with command (I'm a beginner)?
Thank you!


ORDER BY acteurdoes in that query if getting the actors in alphabetical order didn't match your expectation. In general, if you don't specify anORDER BY, the order of results is non-deterministic (note, that doesn't mean random) and there doesn't appear to be a column by which you can deterministicly order the results as you seem to want