To select with a customer order and limit the results use this command. #terminal #mysql

SELECT * FROM [table] WHERE [column] ORDER BY [column] ASC LIMIT [value];
You can order by ascending.
ASC
Or you can order by descending.
DESC
Complete Cheat Sheet https://gist.github.com/hofmannsven/9164408


Sign Up To Comment