drummerian
Technical User
Hi ppl,
Basically i want to use a query to add multiple 'blank' records to a table. I have a family table (each family has a unique family ID) and i need to put a blank record into a payments table (say once a month) with their family ID and the current amount paid as 0 as well as some information a user can put in via a form.
So far this is what i've got, although i know to put multiple records into the table i need to use a different type of SQL statment?
INSERT INTO SubsOwed
VALUES (
.[Family].[FamilyID], [forms].[frmUpdateSubs].[termid], [forms].[frmUpdateSubs].[owedfrom], 0);
Thanks ppl
Basically i want to use a query to add multiple 'blank' records to a table. I have a family table (each family has a unique family ID) and i need to put a blank record into a payments table (say once a month) with their family ID and the current amount paid as 0 as well as some information a user can put in via a form.
So far this is what i've got, although i know to put multiple records into the table i need to use a different type of SQL statment?
INSERT INTO SubsOwed
VALUES (
Thanks ppl