...lready existed I tried adding a WHERE clause WHEREEXISTS (Records). This got an error "wrong syntax near Records". Did a little more digging, saw that I apparently need the field name from both the exist...
...WF';
and this works, but when I change "where test_SYSTEM_CD <> 'CWF';" to "where not exists(test_SYSTEM_CD,'CWF');" it returns 0 results. this would probably only save me a few seconds, but i am m...
...ow my task is to find how many of those products are missing. I guess we need to use WHEREExists, can someone suggest me what should I do next. Thanks and Regards, Bikash
I'm trying to pull information from one table, while excluding anyone who exists in another table, then using it in a filter pane. For example.... Pull all entities in table A who have never b...
This could be unintelligent question still I need to do. I have two table like A and B Here A is QVD and B Is direct connected Db and trying use whereexists like below A: L...
...) you get the point So my plan was to move that nested select statement to it's own LOAD, and then in another LOAD bring in the core data, but place a WHERE NOT EXISTS (uidcot). E...
load * inline [ Region,Sales A,10 B,20 C,30 D,40 ]; Now here I want to load only Region 'C' data using only WhereExists function.Please help me in doing that. I am also trying like this....
...DATE>= '22.03.2021'; Concatenate LOAD ID, TEXT, DATE FROM [FULL.qvd] (qvd) WHERE NOT EXISTS(ID); STORE [DELTA&FULL] into [FULL.qvd] (qvd); So QV displays only t...