Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Joining and concatenating

I want to pull one single field into an existing table. Its bascially a description field.

Concatenation doesnt link the fields properly.

Using a Join Load, this creates lots of duplicates in my data.

Is there any other way in which to do it?

THanks

NOCONCATENATE LOAD
     @1 as PROD_HIER,
     @3 as PROD_HIER_DESC,
     @1 & ' - ' & @3 as g_groupc,
    
FROM table
WHERE len(@1)=10;

Join load
material_group_description as CatEDesc
resident material_group_text;

2 Replies
swuehl
MVP
MVP

brianm10,

since your field names are distinct, you will probably get a cross product between the tables, don't you?

I think you need to specify a field in your join load table which can be matched to the other table, something like CategoryID maybe, but this also needs to exist in the other table with same name (or renamed), so QV can match the field values.

Hope this helps,

Stefan

Not applicable
Author

Thanks for the reply.