If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
i need to run a query where it will read all the name from my text file and pull out the age from informix table according to the names in my text file.The names are the primary key in my database.
create temp table names (name varchar(20));
load from names.txt insert into names;
select a.name, a.age
from <your table> a, names b
where a.name = b.name;