Hi,
Any thoughts on how to add the result of a few (five to be exact) JOIN statements onto a larger generic SELECT statement in MySQL. I've tried UNION between the large SELECT statement and the JOIN select statement but the number of columns must be equal, so that is not what I'm looking for. I'm simply looking to substitute a few columns with there respective data (from anonther table using join) in a larger SELECT statement so that the entire row is available in one variable ie: $result= mysql_query("single SQL statement that joins 6 tables"). Is this possible? Thanks