批量数据插入
我需要从一个表(多行)中获取数据,并在修改和添加一些新字段后插入到其他表中。
例如:
表1 itemid、价格、qnt、 发货日期
表2发票ID,发票日期, customer_id、itemid、价格、qnt、 总金额、发货日期、 总计
请帮我用 ms access 制作它
I need to fetch data from one table (multiple rows) and insert into other table after modifying and adding some new fields.
For example:
Table 1 itemid, price, qnt,
date_of_dispatchTable2 Invoiceid, Invoicedate,
customer_id, itemid, price, qnt,
total_amt, date_of_dispatch,
grandtotal
Please help me to make it in asp with ms access
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要添加具有相同名称的所有输入类型,以便您可以收集包含所有值的数组。
示例:
然后,在处理表单时:
您可以处理详细信息。
You need to add all the input type with the same name, so you can collect an array with all the values.
Sample:
Then, when processing the form:
You can work the details.