Alex
10/13/2021, 3:41 PMselect vendor.id, vendor.firstname, vendor.lastname, vendor.email, vendor.isinactive from vendor where isperson = 'T' union select employee.id, employee.firstname, employee.lastname, employee.email, employee.isinactive from employee
I'm just trying to get back all people that are vendors and employees but I just keep getting a generic unexpected error that doesn't mention what was wrong.Clay Roper
10/13/2021, 3:57 PMAlex
10/13/2021, 4:00 PMAlex
10/13/2021, 4:19 PMselect t.* from ((select id, firstname, lastname, email, isinactive from vendor where isperson = 'T') union (select id, firstname, lastname, email, isinactive from employee)) t
Clay Roper
10/13/2021, 4:34 PMClay Roper
10/13/2021, 4:34 PMAlex
10/13/2021, 4:37 PMunexpected_error
I can't be fully sure.