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

Resident load statement

Hi,

I'm trying to do the below but keep getting invalid syntax errors, I'm sure this is simple for someone in the know.

Could someone check this over for me? I'm gonna go crazy!

counties_temp:

SQL

select  CNTY_NAM as unitaryArea

,       points

from QlikMaps.dbo.counties2;

counties:

select unitaryArea, points

from counties_temp;

load unitaryArea,

  concat(points,'<br>') as points

Resident counties_temp;

drop table counties_temp;

1 Solution

Accepted Solutions
maxgro
MVP
MVP

counties_temp:

SQL

select  CNTY_NAM as unitaryArea

,       points

from QlikMaps.dbo.counties2;

counties:

noconcatenate

load unitaryArea,

  concat(points,'<br>') as points

Resident counties_temp

group by unitaryArea;

drop table counties_temp;

View solution in original post

3 Replies
maxgro
MVP
MVP

counties_temp:

SQL

select  CNTY_NAM as unitaryArea

,       points

from QlikMaps.dbo.counties2;

counties:

noconcatenate

load unitaryArea,

  concat(points,'<br>') as points

Resident counties_temp

group by unitaryArea;

drop table counties_temp;

Not applicable
Author

Replace FROM with RESIDENT here:

counties:

select unitaryArea, points

from counties_temp;

Not applicable
Author

Many thanks for your quick help.

Hope you have a nice day!