Lets say I have 5 rows of data in my database. Each row has 3 fields and the first 2 fields are the same in each row. I need to return the first occurrance of the third field.
So if this is my database:
A B C
A B D
A B E
A B F
A B G
And this is my input:
A B
I need a query to return this output:
A B C
Thanks.
So if this is my database:
A B C
A B D
A B E
A B F
A B G
And this is my input:
A B
I need a query to return this output:
A B C
Thanks.