How can I merge dataset x and dataset y, where dataset y is a 'category reference', so I want to merge these two dataset, and use dataset y as many time as needed. so like:
dataset x:
apple 3
apple 4
banana 5
banana 6
apple 5
carrot 4
apple 3
carrot 3
dataset y:
apple fruit
banana fruit
carrot vegetable
result I want:
apple 3 fruit
apple 4 fruit
banana 5 fruit
banana 6 fruit
apple 5 fruit
carrot 4 vegetable
apple 3 fruit
carrot 3 fruit