InvoiceTot

  • Thread starter Thread starter tom
  • Start date Start date
T

tom

How does this work with no table or query
called InvoiceTot?

SELECT InvoiceTot.[Invoice Number]
FROM Invoice AS InvoiceTot
GROUP BY InvoiceTot.[Invoice Number];
 
How does this work with no table or query
called InvoiceTot?

SELECT InvoiceTot.[Invoice Number]
FROM Invoice AS InvoiceTot
GROUP BY InvoiceTot.[Invoice Number];


The AS keyword is used to rename (alias) a field, calculation, table
or other query. The actual table name is [Invoice]. This would be the
same...

SELECT IT.[Invoice Number]
FROM Invoice AS IT
GROUP BY IT.[Invoice Number];
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top