I’m trying to generate a SQL statement for xTuple 4.10.1 that will display the tax type assigned to items
I know I need to pull from the tables ‘item’, ‘itemtax’ ,and ‘taxype’
The statement so far looks like
Select Item_id, item_number, item_descrip1, item_descrip2, itemtax_id, itemtax_taxtype_id
FROM Item
join itemtax ON (itemtax_item_id=item_id)
How do I join a 3rd table with INNERJOIN and where do do I need to put it considering I need to add
taxtype_id , taxtype_name