Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

list of values

Status
Not open for further replies.

cristina10

Programmer
Dec 21, 2006
9
0
0
FR
I want to make a list of values for a object. By exemple the values are X, Y, Z
When the Values button is touch, it’s open 3 values: X
Y
Z
How I make this?
I make a other object like this 'x' from dual union select 'y', but for Z I don’t know
 
union will work for more than 2 values:

Code:
select 'X' FROM DUAL
UNION
SELECT 'Y FROM DUAL
UNION
SELECT 'Z' FROM DUAL
......
.......

Ties Blom

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top