Hi,
Sorry for the late reply.
I have three tables.
they look something like this
snid | usid | title | description | etc.
pnid | usid | title | description | etc.
tnid | usid | title | description | etc.
what i would like to end up with is this
snid | pnid | tnid | usid | title | description | date
the values might look like this
Null | 234 | Null | 879 | title | description | date
356 | Null | Null | 879 | title | description | date
so I will have all the records in each table and then will be able to determine the type by checking which id is not null.
i can't use 1 table because these tables will get huge and I can't afford to have them collapsed.
Thanks!
Shalom