Inserting data from a form into a table

2020-05-07 05:19发布

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条回答
叼着烟拽天下
2楼-- · 2020-05-07 06:09

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

查看更多
登录 后发表回答