Good Afternoon, please help me build a query which uses joins and temporary tables.
select Field1,Field2,Field3,Field4,Field5 from
(select * from Table1
join Table2
on Table1.CFIELD=Table2.CFIELD)
where Field3 < Field2
I want to join the output of this to an existing table3 using FIELD 5. Please help me .