Subject Re: [ib-support] INSERT INTO...FROM SELECT...
Author Milan Babuskov
duilio_fos wrote:
> is there (in FB) a SQL command that easily transfers data from a
> table to another ?

INSERT INTO destination (column_list, ...)
SELECT column_list...
FROM source table
[WHERE etc.]

Milan.