Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SQL INSETINTO

Status
Not open for further replies.

thegameoflife

Programmer
Dec 5, 2001
206
US

If keyword_temp = "1,2,3" how would I get that into the table. Now it only will put 123.



Dim strSQL as String

strSQL = "INSERT INTO Keywords (keyword) VALUES ('" & keyword_temp & "');"
DoCmd.RunSQL strSQL
 
strSQL = "INSERT INTO Keywords (keyword) VALUES ('[" & keyword_temp & "]');"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top