Hey guys. Didn't even know how to name this thread properly. Here's what I have: a few tables with identical structure. Let's say they look like this:
Index(autonumber) | ID | Data1 | Data 2
Lets say I have 3 of them. I need to mix them together so for every lets say 4 records of the first table was one record of the second one and 2 records of the third one. So they would be like this:
1 | record from table 1
2 | record from table 1
3 | record from table 1
4 | record from table 1
5 | record from table 2
6 | record from table 3
7 | record from table 3
8 | record from table 1
and so on.
Just an example. I need to be able to do this with any number of tables and any set of rules.
Any idea how to do this???
Sorry for my crappy English.
Index(autonumber) | ID | Data1 | Data 2
Lets say I have 3 of them. I need to mix them together so for every lets say 4 records of the first table was one record of the second one and 2 records of the third one. So they would be like this:
1 | record from table 1
2 | record from table 1
3 | record from table 1
4 | record from table 1
5 | record from table 2
6 | record from table 3
7 | record from table 3
8 | record from table 1
and so on.
Just an example. I need to be able to do this with any number of tables and any set of rules.
Any idea how to do this???
Sorry for my crappy English.