本文介绍了连续发票编号多表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我有3张桌子,3张不同的表格可以创建3种不同类型的发票。所有表格(客户,员工)只有2个公共字段。

我想添加一个连续的发票编号,这样无论使用何种表格,发票编号总是会增加1。表单使用插入查询创建一个新记录。

我是否必须创建一个包含PK字段的第四个表,以便我可以使用Dmax + 1?


谢谢

Hi,
I have 3 tables from which 3 different forms create 3 different types of invoices. There are only 2 common fields to all tables(customer, employees).
I would like to add a sequential Invoice number so that no matter what form is used, the invoice number always goes up by 1. The forms create a new record using an insert query.
Would I have to create a fourth table that contains a PK field so that I can use the Dmax+1?

Thanks

推荐答案




这篇关于连续发票编号多表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-14 20:56