I have table customer
with columns country
, customer_id
and customer_name
.
I need to order the mat table in angular by columns country
, customer_id
and customer_name
, like in SQL query.
SELECT * FROM customers ORDER BY country, Customer-Name;