In MS Access SQL, what does ! do?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to know it means in the situation where:

[VW4_QUANT]![QUANTITY_PURCHASED]

QUANTITY_PURCHASED is a column in the veiw VW4_QUANT. I need to know before
6:00 Eastern 12-2-04. thanks
 
It is parsed by the Expression Analyser, and converted
into a .

[VW4_QUANT].[QUANTITY_PURCHASED]

[VW4_QUANT]![QUANTITY_PURCHASED] is an expression like
4+3 or [QUANTITY_PURCHASED]*100

The value of the expression is [VW4_QUANT].[QUANTITY_PURCHASED]

(david)
 
Bill said:
I need to know it means in the situation where:

[VW4_QUANT]![QUANTITY_PURCHASED]

QUANTITY_PURCHASED is a column in the veiw VW4_QUANT. I need to know before
6:00 Eastern 12-2-04. thanks

In Microsoft Access, ! owns you!

Sorry... too much Slashdot.
 
Back
Top