Is it possible to have an Update statement in Oracle 8i that doesn't detail all the field names?
e.g. UPDATE tblA SET ROW = (SELECT * FROM tblB WHERE tblB.id = 1) WHERE tblA.id = 1;
tblA and tblB have the exact same structure.
I found a reference to 'SET ROW' in a 9i manual, but when I try it on 8i, it tells me that it can't find the column name.
Any help would be greatly appreciated. My tblA has about 100 fields; I'd hate to have to detail each one.
Jeremy
e.g. UPDATE tblA SET ROW = (SELECT * FROM tblB WHERE tblB.id = 1) WHERE tblA.id = 1;
tblA and tblB have the exact same structure.
I found a reference to 'SET ROW' in a 9i manual, but when I try it on 8i, it tells me that it can't find the column name.
Any help would be greatly appreciated. My tblA has about 100 fields; I'd hate to have to detail each one.
Jeremy