Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Hi

Hi, i have creates Table like Table1:select A,b,c from tblfinanc so i want to pull the column A from Table1. i tried select A from Table1 ; but it didn't worked. So how to pull the column from Table1?

2 Replies
manojkvrajan
Luminary
Luminary

SQL statement will not work after you extract the data from your database. Please check if it works.

// Assume Table1 is from your Relational database - Oracle / Mainframe

Table1:

SELECT A,B,C

FROM tblfinanc;

// Assume Table2 is the Resident table that you can use to transform the data


Table2:

LOAD A,

1 as %key

RESIDENT Table1;

DROP TABLE  Table1;  // Drop Table if it won't be useful.

DROP FIELD %key;

MayilVahanan

Hi

     Do you want the A only from table1;

     Then why you load all from sql.. Select A from tableName itself enough.. Can you say clearly what your requirement?

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.