Use this statement first_name column value will become Aamer, other Aamod, Abdelaziz one of three values
select * from employees order by first_name
Here is no data from Orderby
select * from employees
CodePudding user response:
Order by is sorting, so use the first_name sort this field, this field inside a the beginning of the row to the frontCodePudding user response: