Suppose I have the following data that I want to run a Query on:
Name: Age: Size: Gender:
Bill 10
Mary 20
Bill XL
Mary S
Bill M
Mary F
How would I do a query to output the following:
Name: Age: Size: Gender:
Bill 10 XL M
Mary 20 S F
I'm sure it's obvious, but I'm stuck
Thanks for any help!!
Name: Age: Size: Gender:
Bill 10
Mary 20
Bill XL
Mary S
Bill M
Mary F
How would I do a query to output the following:
Name: Age: Size: Gender:
Bill 10 XL M
Mary 20 S F
I'm sure it's obvious, but I'm stuck