Subject | RE: [IBO] BLOB Copy |
---|---|
Author | Alan McDonald |
Post date | 2007-06-25T05:16:55Z |
> How do I copy the contents of a BLOB field in one table to a BLOBsimple
> field in another table?
>
UPDATE TABLE2 SET BLOB1=(SELECT BLOB1 FROM TABLE1 WHERE TABLE1.ID=N)
WHERE TABLE2.ID=Y;
Alan