Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 Sxbbb
		
			Sxbbb
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		I have Table
Output:
LOAD     WorkOrder_BaseOutput
and I have Table
FATCC:
LOAD  Type, 
 WorkOrder_Base
I want to weld WorkOrder_BaseOutput with Type by creating a new table
I've tried doing this. But the data is incorrect
TEST:
LOAD WorkOrder_Base as WorkOrder_BaseOutput,
Type as Type_Output
Resident FATCC;
 Aasir
		
			Aasir
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		To concatenate
Output:
LOAD
WorkOrder_BaseOutput
Resident WorkOrder_BaseOutput;
FATCC:
LOAD
Type,
WorkOrder_Base
Resident FATCC;
Concatenate (TEST)
LOAD
WorkOrder_Base as WorkOrder_BaseOutput,
Type as Type_Output
Resident FATCC;
