P
Paul Danaher
I have an invoices database, which has fewer than 780 entries, and I tried
to run two queries. The first is a "make table", with SQL
SELECT [invoices w@w].InvoiceNumber, [invoices w@w].[customer name],
[invoices w@w].[date paid], [invoices w@w].currency, [invoices w@w].[net
amount] INTO [invoices paid in 2003]
FROM [invoices w@w]
WHERE (((Year([date paid]))=2003))
ORDER BY [invoices w@w].[date paid];
but the output stops dead at 65 records, which is the end of September. A
simple query with SQL
SELECT [invoices w@w].InvoiceNumber, [invoices w@w].[customer name],
[invoices w@w].[date paid], [invoices w@w].currency, [invoices w@w].[net
amount]
FROM [invoices w@w]
WHERE (((Year([date paid]))=2003))
ORDER BY [invoices w@w].[date paid];
yields all 89 records.
How is this possible?
What do I have to do in a very simple accounting application to make sure
the SQL works properly?
to run two queries. The first is a "make table", with SQL
SELECT [invoices w@w].InvoiceNumber, [invoices w@w].[customer name],
[invoices w@w].[date paid], [invoices w@w].currency, [invoices w@w].[net
amount] INTO [invoices paid in 2003]
FROM [invoices w@w]
WHERE (((Year([date paid]))=2003))
ORDER BY [invoices w@w].[date paid];
but the output stops dead at 65 records, which is the end of September. A
simple query with SQL
SELECT [invoices w@w].InvoiceNumber, [invoices w@w].[customer name],
[invoices w@w].[date paid], [invoices w@w].currency, [invoices w@w].[net
amount]
FROM [invoices w@w]
WHERE (((Year([date paid]))=2003))
ORDER BY [invoices w@w].[date paid];
yields all 89 records.
How is this possible?
What do I have to do in a very simple accounting application to make sure
the SQL works properly?