This might not be possible, but on the chance that it can - is there a
way to do the following:
Given a arbitray one dimesional value list:
('AALGX','12345 ','XXXXX','AAIN X','AMMXX')
Is there a way that I could do a select statement, or similiar, in the
value list, to get the following result
field_name
-----------
AALGX
12345
XXXXX
AAINX
AMMXX
Because, what I want to be able to do in the long run is essentially
perform an outer join on the value list.
Something along the lines of
select value_list.fiel d_name, dbtable.otherfi eld FROM value_list left
outer join dbtable on value_list.fiel d_name = dbtable.field_n ame
So I want all the values in the field list to show up, and any
matching data in the database table that exists, otherwise null.
Maybe there is another approach to this???
Thanks!
KT
way to do the following:
Given a arbitray one dimesional value list:
('AALGX','12345 ','XXXXX','AAIN X','AMMXX')
Is there a way that I could do a select statement, or similiar, in the
value list, to get the following result
field_name
-----------
AALGX
12345
XXXXX
AAINX
AMMXX
Because, what I want to be able to do in the long run is essentially
perform an outer join on the value list.
Something along the lines of
select value_list.fiel d_name, dbtable.otherfi eld FROM value_list left
outer join dbtable on value_list.fiel d_name = dbtable.field_n ame
So I want all the values in the field list to show up, and any
matching data in the database table that exists, otherwise null.
Maybe there is another approach to this???
Thanks!
KT
Comment