Hello Michael,
When you create a view on to tables they remain separate. With view you combine data from two (or more) tables, however they must have a connection (usually, but not neccessary, specified by foreign key). You create such view with by JOIN-ing - for example:
CREATE VIEW TABLE1TABLE2 AS
SELECT TABLE1.FIELD1, TABLE2.FIELD2 FROM TABLE1 INNER JOIN TABLE2 ON TABLE1.JOININGFIELD = TABLE2.JOININGFIELD
If you have a situation when you want to show rows from several tables, then you again create a view, but this time using UNION (see
dev.mysql.com/doc/refman/5.0/en/union.html ).
You can then dispay data specified by such view with TableJX.
Regards,
Bostjan