Generate SQL INSERT statement of the form INSERT INTO target.table (fields) SELECT fields FROM source.table
sqlForInsertFromSelect(target.table, source.table, fields)
target.table | name of target table |
---|---|
source.table | name of source table or SQL providing source data |
fields | vector of character with field names |