Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

create view for complex struct

avatar
Contributor

Hi, 

 

I have a query like

 

select equipment.`location`.name from a

 

this works (in HUE), when i try to create a view, i have this error

 

Invalid column/field name: equipment.location.name

 

equipment is a complex object under a, and location is complex under equipment, how can i create the view?

 

Thanks

Shannon

 

 

1 ACCEPTED SOLUTION

avatar

You need to give your "equipment.location.name" an alias that is a valid column name. For example,

 

create view ... select equipment.location.name as name ....

View solution in original post

2 REPLIES 2

avatar

You need to give your "equipment.location.name" an alias that is a valid column name. For example,

 

create view ... select equipment.location.name as name ....

avatar
Contributor
Thanks, that worked.