Skip to content
Advertisement

Inner Join returned values

I have a query such as,

Tables look like:

employee

task

I believed the original query above would result in:

But it is actually:

I thought it would just return Emily once since inner join returns both values in both tables, but doesnt Emily appear only once in the employee table? I dont understand why it returns Emily twice even though it is listed twice in the task table?

Thanks

Advertisement

Answer

Emily has two tasks, hence her name record gets duplicated in the join, once for each match. I might use exists logic to get the result you want here:

Read in plain English, the above query says to return any employee name (once) for which we can find at least one task in the task table.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement