I'd like to Select columns from Table 1 with a Row Filter, Select columns from Table 2 and join.
This works but it's a bit verbose. I was wondering if there is a cleaner way to write this.
SELECT * FROM
((SELECT JOB_NUM, ITEM_NUMBER, DATE_COMPLETED, QTY_COMPLETED, STD_USAGE, ACTUAL_USAGE FROM JOB_ROUTERS WHERE RESOURCE_CODE == "TDWELD") AS JOBS
LEFT JOIN
(SELECT ITEM, DESCRIPTION FROM ITEM_ATTRIBUTE) as item
ON JOBS.ITEM_NUMBER == ITEM.ITEM)