What does the & _ symbols represent in an SQL statement?
e.g.
strSQL = "SELECT name, age FROM table WHERE " & _
"name = '" &name& "'"

Why are they in separate lines and what is the function of the "& _" symbol represented above?