Your task is to sort the information in the provided table 'companies' by number of employees (high to low). Returned table should be in the same format as provided:
- id
- ceo
- motto
- employees
Solution should use pure SQL. Ruby is only used in test cases.
/* SQL */
SELECT * FROM companies ORDER BY employees DESC