Skip to main content
Announcements
Customer Spotlight: Discover what’s possible with embedded analytics Oct. 16 at 10:00 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

'/' in column name?

Hello Guys,

I am stuck in a scenario,where column name of my sql table is like 'temp/test' and I am qlikview showing showing error that "temp field in not found" on reload.How we can handle this situation in load.Thanks in advance.

1 Solution

Accepted Solutions
hic
Former Employee
Former Employee

You need to quote the field names, either with [ ] or with " " .

SQL SELECT [temp/test] FROM ...

SQL SELECT "temp/test" FROM ...

HIC

View solution in original post

3 Replies
MK_QSL
MVP
MVP

SELECT REPLACE('temp/test','/','-');

hic
Former Employee
Former Employee

You need to quote the field names, either with [ ] or with " " .

SQL SELECT [temp/test] FROM ...

SQL SELECT "temp/test" FROM ...

HIC

Not applicable
Author

Thank you guys.