insert into NEWTABLE<br>
(select 198, breed, dogid, description<br>
from OLDTABLE<br>
where code1='B1' and code2='C2');<br>
<br>
<br>
Should work (I think). If 198, 'B1' and 'C2' are<br>
not constants then you'll need to wrap the whole<br>
lot up in into a procedure and pass these in...