Dalla documentazione di Oracle, la query seguente lo spiega meglio
INSERT INTO tbl_temp2 (fld_id)
SELECT tbl_temp1.fld_order_id
FROM tbl_temp1 WHERE tbl_temp1.fld_order_id > 100;
Puoi leggere questo link
La tua domanda sarebbe la seguente
//just the concept
INSERT INTO quotedb
(COLUMN_NAMES) //seperated by comma
SELECT COLUMN_NAMES FROM tickerdb,quotedb WHERE quotedb.ticker = tickerdb.ticker
Nota:assicurati che le colonne in Inserisci e Seleziona siano nella posizione corretta in base alle tue esigenze
Spero che questo aiuti!