Comments

  • Thread starter Thread starter anonymous
  • Start date Start date
A

anonymous

The /* does not allow comments in my ACCESS SQL
statement, why is this? How does one add comments
in ACCESS SQL.

TIA
 
One doesn't. Access SQL does not support comments. Wish it did.

Workarounds:
Store the SQl statements in a word document, where you can append comments.
Store the SQL statement in a memo field in a table along with another field
where you can put comments.
Store the SQL string as code in a module and then call/use the module to execute
the SQL.

All are not very satisfactory.
 
Thanks...
-----Original Message-----
One doesn't. Access SQL does not support comments. Wish it did.

Workarounds:
Store the SQl statements in a word document, where you can append comments.
Store the SQL statement in a memo field in a table along with another field
where you can put comments.
Store the SQL string as code in a module and then call/use the module to execute
the SQL.

All are not very satisfactory.


.
 
Back
Top