Hello all, I need to get information from 3 tables and each table has "products_id" so i have the tables PRODUCTS PRODUCTS_DESCRIPTION PRODUCTS_TO_CATEGORIES and i want to get all of the info from each table, ie so i have a full set for a particular row. How would i do this please Mike
Something like this... (for inner joins..) SELECT * FROM PRODUCTS P, PRODUCT_DESCRIPTION PD, PRODUCTS_TO_CATEGORIES PC WHERE P.products_id=PD.products_id AND PC.products_id=PD.products_id
hmm, yeah, I have written a new shop so that i can get away from the dreaded osc, Im just trying to get all the products out in a nicer format so i can drop them into a leaner, meaner db thanks kjewat