this is my query for my catalog:
SELECT *
FROM item, Manfac
WHERE item.ManID = Manfac.ManID
ORDER BY item.typeID
in the item table there is a typeID field. this field corepondes to a manfac table and in the table is the fields typeID and typeNAME. So in the item table, items with 2 as the typeID are software and 3 are tv's etc etc.
how am i able to pull of the typeNAME field staright into the catalog. so in my catalog list i have the correct typeNAME. can i one help please?