Inserting data from a form into a table

梦想与她 提交于 2019-12-09 03:52:34

问题


it's been probably 3 years since I have had to use VB or VBA code. I am working on a project for work where I need to take the information that is listed on the form and insert it into a table. What I am stuck on is the last part of the code the values part. This is what I have so far.

INSERT Volunteers (Name, Email, Number, Emergency Contact, Emergency Number) VALUES (and this is where I get stuck)

Thank you all in advance!


回答1:


INSERT Volunteers (Name, Email, Number, Emergency Contact, Emergency Number) VALUES ('Name_Value','Email_Value','Number_Value','Emergency_Value','Number_Value') is the syntax for more info here is more details Link to SQL Insert



来源:https://stackoverflow.com/questions/32281630/inserting-data-from-a-form-into-a-table

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!