Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
kamal_sanguri
Specialist
Specialist

How to delete a field from specific table..?

Hi,

I have stuck  in situation where I need to drop one field from one table.

If I use DROP FIELD <F1> command, the <F1> field from the other table also gets deleted and I do not want to delete it from there. Any help would be greatly appreciated.

Thanks,

Kamal

1 Solution

Accepted Solutions
jonasheisterkam
Partner - Creator III
Partner - Creator III

drop field A from X;

View solution in original post

3 Replies
jonasheisterkam
Partner - Creator III
Partner - Creator III

drop field A from X;

Not applicable

Hi,

You can specify from what table you like the field to be dropped

ex. DROP FIELD F1 FROM TABELA;

kamal_sanguri
Specialist
Specialist
Author

Thank you very much.. it worked.