Answer the question
In order to leave comments, you need to log in
Problems with fetching fields from the database?
For the depicted database schema, you need to create a query that will return a list of all accounts. For each account, select the fields Account Number, Account Date, Customer Name, and Customer Name referred to by the current account customer.
Let's say a query on the first 3 fields, I would do like this:
SELECT Invoices.Id, Customers.CBilling_date, Customers.Name
FROM Invoices JOIN Customers ON (Customers.Id = Invoices.Customer_ID)
GROUP BY Invoices.Billing_date
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question