I search phpbuilder database and found following codes to select unique field and then insert into other table written by Scott.
select distinct field1, field2, field3 into some_table from some_other_table;
But How we can select fields, then directly insert into some_table?
Appreciate your help.