|
Hi all, as the title says, does Access SQL support the Insert All Into statement? I'm doing an ASP website and am trying to enter valued from a form into two lionked tables in an Access database. The standard SQL code would be
INSERT ALL INTO tblParent(name, Address) Values ('Dave','Home')
INTO tblChild(age, phone) Values ('35','1234567');
However, I keep getting a syntax error. If Access doesn't support this, how do I insert into linked tables?
Cheers, Lol
|