gcogco10 Ответов: 1

Как вернуть списки счетов-фактур, заказанных с помощью SQL server?


Привет Команда

У меня есть две таблицы "счета-фактуры и клиенты", и каждая из них имеет свой собственный идентификатор. А теперь как мне быть
write a SQL query to return a list of all the invoices. For each invoice, show the Invoice ID, the billing date, the customer’s name, and the name of the customer who referred that customer (if any). The list should be ordered by billing date.


Что я уже пробовал:

// Invoices  
  
SELECT TOP (1000) [Id]  
      ,[BillingDate]  
      ,[CustomerId]  
  FROM [eNtsaRegistration].[dbo].[Invoices]  
  
// Customers  
SELECT TOP (1000) [Id]  
      ,[Name]  
      ,[ReferredBy]  
  FROM [eNtsaRegistration].[dbo].[Customers]