Hi
I have this in my query:
SELECT flash_data.flash_data, h_package_data.hpackage_data
FROM flash_data, h_package_data
What i want to do is add the values in two tables together? There are alos a load of other tables but i have only used two here. I want to be able to select the last entered record of each table, then add them together. I know i could just put a "+" but this will not work with all the rest of the tables and data i need to use.
JAKE
I have this in my query:
SELECT flash_data.flash_data, h_package_data.hpackage_data
FROM flash_data, h_package_data
What i want to do is add the values in two tables together? There are alos a load of other tables but i have only used two here. I want to be able to select the last entered record of each table, then add them together. I know i could just put a "+" but this will not work with all the rest of the tables and data i need to use.
JAKE
Comment