I want to join table RD and table POOL with left single match join to keep the same number of rows of my left table (RD) into the new generated table newRD.
I succeed to have left join with below R basic code but not the single match.
newRD <- merge(RD, POOL, by.x=c(rdrefid), by.y=c(poolid),all.x=TRUE)
Spotfire permit to do it as follows but I would like to have all data base management embedded into a basic R script.
Use of the Spotfire Insert > Columns function Spotfire - Insert Column