Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Community,
I have one table like,
Load *, Stu_Num & ID as Key
weere Exists(Stu_Num);
Load ID,
Stu_Num,
Name,
Designation
From Table_Name;
Here, what is the use of Exists() Function??
Please anyone can Explain....??
This is an odd use of Exists(), my guess would be that it does.... nothing. Except possibly excluding any null values in Stu_Num.
What are you trying to achieve?
Hi,
Check for detailed help in the attached link
Refer The Exists() function section;
Regards,
jagan.
HI,
Actually i have developed application, I am supporting side,
I am little confuse, they are used script like,
As Jonathan said it could possibly exclude null values, but I would do that in a resident load instead.
Hi Jonathan,
I am Little Confusion, If i am using Exists(ID) i am not getting records.
PFA,
check the previous table for the stu_num field.
This exists will load only the stu_num loaded from the previous table
Hi
Use it in the following way
Test:
LOAD id,
date,
cost
FROM
(qvd);
Test1:
LOAD *, id & date as ID1 Resident Test
Where Exists(id);
DROP Table Test;