I have a database which has a Orders / Lineitems structure.
For each Order number certain lineitens are associated.
Each order is dot matrix printed on a triplicate state form that are sequentially ordered that can only accomodate 4 lineitems.
So this is an example;
order lineitem Form number
00001 xxxxx1 123456780
00001 xxxxx2 123456780
00001 xxxxx3 123456780
00001 xxxxx4 123456780
00001 xxxxx5 123456781
00001 xxxxx6 123456781
00002 xxxxx1 123456782
00003 xxxxx1 123456783
00003 xxxxx2 123456783
00003 xxxxx3 123456783
What is the easiest way to update the form number used in the lineitem table?
For each Order number certain lineitens are associated.
Each order is dot matrix printed on a triplicate state form that are sequentially ordered that can only accomodate 4 lineitems.
So this is an example;
order lineitem Form number
00001 xxxxx1 123456780
00001 xxxxx2 123456780
00001 xxxxx3 123456780
00001 xxxxx4 123456780
00001 xxxxx5 123456781
00001 xxxxx6 123456781
00002 xxxxx1 123456782
00003 xxxxx1 123456783
00003 xxxxx2 123456783
00003 xxxxx3 123456783
What is the easiest way to update the form number used in the lineitem table?
Comment