Can someone make this a single query?
问题 So I was just searching how to do an "INSERT INTO" query and found this: sql="INSERT INTO Customers (ID,firstName," sql=sql & "lastName)" sql=sql & " VALUES " sql=sql & "('" & Request.Form("id") & "'," sql=sql & "'" & Request.Form("firstname") & "'," sql=sql & "'" & Request.Form("lastname") & "')" I know it works but I want to make it a single query without all the sql=sql's 回答1: You took the route of a quick hack as stated in your comments by doing rhis: sql="INSERT INTO Customers (ID