Hi experts
I am Newbie to DB2.
I have to creat script which has to import using query (some join query) in DB2
For ex :
table A (id integer, type character (10) ,name character (40))
I want to insert to this table using a query
-----------------------------
insert into tableA
select id, type, name from tableb, tablec
where tablea.id = tablec.id
-----------------------------
Can any one help me on this..?
Thanks in advance
S.V