J
JimP
Is there a 255 character limit to the length of a SQL SELECT statement in
VBA, e.g.
strSQL="SELECT... (max 255 chars yes or no)"?
VBA, e.g.
strSQL="SELECT... (max 255 chars yes or no)"?
JimP said:Is there a 255 character limit to the length of a SQL SELECT statement in
VBA, e.g.
strSQL="SELECT... (max 255 chars yes or no)"?
JimP said:Is there a "standardized" way to break up a long SQL select statement,
given that " _" does not function as a line continuation for a string.
e.g.
strSQL1 = "SELECT....."
strSQL2 = "FROM........"
strSQL =strSQL1 & strSQL2