For the depicted database scheme, it is necessary to create a query that will return a list of all accounts. For each account, select the fields account number, date of the account, customer name and customer name to which the current account customer refers. 
SELECT Invoices.id, Invoices.Billing_date, Customers.Name, Customers.Reffered_ID FROM second_test.Invoices, second_test.Customers WHERE Invoices.Customer_ID = Customers.id; Tell me how to display the name of the client that the client refers to (in this query, id is displayed instead of the name)?