Hello Antoine,

> I need to copy one row of a table to another table of the same structure (same 
>number of col 
> ans same names of col), but we don't know in advance what is this strucure, we just 
>know 
> that they are the same. 

If your absolutely *sure* that your source and destination tables has the same 
structure, you can 
issue a couple of MapBasic commands to perform the copy without knowing anything about 
the 
record structure.

select * from SourceTab where [your where clause here] into TO_COPY
insert into DestTab select * from TO_COPY

Regards,
Warren Vick
Europa Technologies Ltd, U.K.
www.europa-tech.com
----------------------------------------------------------------------
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]
  • MI Moving Row Antoine Gilbert
    • Warren Vick, Europa Technologies Ltd.

Reply via email to