does ms access use semicolon to terminate a statement

  • Thread starter Thread starter tina
  • Start date Start date
Tina

MS Access is usually considered the user-interface.

Are you talking about VBA? (and if you are, no)

Regards

Jeff Boyce
Microsoft Office/Access MVP
 
does ms access use semicolon to terminate a statement

VBA expressions do not use semicolons (the statement ends at the end of a line
unless you use the " _" continuation signal).

SQL queries are optionally terminated by a semicolon (if you leave the
semicolon off it still works, but it would be good practice to include it).
 
Back
Top