Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
priyarane
Specialist
Specialist

Rename field from particular table only

hi Community,

Is there any option to rename from particular table.

I have scenario like

table1:

A,

B,

C

;

table2:

A,

X,

Z

;

now I have to rename field in Table1 like A as xx from table1.

while loading we can do it in table itself but I have to do it after loading only.

-Priya

3 Replies
balar025
Creator III
Creator III

Hi ,

You can use rename function.

And while loading table1

Qualify A;

table1:

A,

B,

C

UnQualify *;

Rename field table1.A to XXX;

Regards,

Ravi Balar

Anil_Babu_Samineni

I assume A,B,C are the field names. Why not simple alias name

Load A as xx, B, C Inline [

A , B, C

.......

.....

];

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
prma7799
Master III
Master III

You can use Resident Load

table1:

A,

B,

C

;

NewTable:

Load

A as XX,

B as YY,

C as ZZ

Resident table1;

Drop table table1 ;