- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2017 10:57 AM
I would like to create a database view with unique divisions from a table such as this:
[
dept1 div1 var_a
dept1 div1 var_b
dept1 div2 var_c
dept2 div1 var_d
dept2 div2 var_e
dept2 div2 var_f
dept2 div3 var_g
]
I want the view to look like this:
[
dept1 div1
dept1 div2
dept2 div1
dept2 div2
dept2 div3
]
After looking at the database view documentation, here
I couldn't figure out how to find the, "View Field form" to restrict the variables returned ?
And, I couldn't see any way use a Where clause to make the set unique?
Any guidance would be appreciated.
-G
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2017 11:58 AM
Database View is used to add two tables with a common field. I am not sure it will fulfill your requirement.
You can find "View Field form" when you defined a table.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2017 09:54 AM
Glen,
I have similar issue are you able solve this?