I have 2 SQL tables:
One with a list of emails for each employee and total hours worked each day for this email:
abc@gmail.com, 7
def@gmail.com, 6
abc@gmail.com, 8
def@gmail.com, 5
And a table with Employee Information with firstName, lastName, and email
John, Smith, abc@gmail.com
Abby, Adams, def@gmail.com
Right now I have a table component that connects to the first table and displays all the records of employee emails and hours worked every day
I want to add a custom column that displays each employee's first_name + last_name wherever the email in the table component matches the email in the second SQL table.
How would I do this?