Hi Reader.I have a page that I use to list drop down lists. I get the data for these lists from my database. The data for one of the lists is not in the database. Is there anyway to write a select statement which will create a recordset using strings?For example:Select 'A' as Label, 'B' as Label, 'C' as Label, 1 as Data, 2 as Data, 2 as Data
What I want is two fields with 3 rows. I do not want 6 fields with 1 row. Is there anyway to do this?This is what I want...Label Data----------------A 1B 2C 3
ThanksLeah