in reply to Re: (OT) MySQL Help
in thread (OT) MySQL Help

If ID and MARK are similar across all the tables, UNION is probably the way to go.
SELECT ID, MARK FROM Table 1 UNION SELECT ID, MARK FROM Table 2 ...
tobin