Closed
Description
library(DBI)
con <- dbConnect(RSQLite::SQLite())
dbWriteTable(con, "df1", data.frame(x = c(1, 2)))
dbWriteTable(con, "df2", data.frame(x = c(2, 3)))
dbGetQuery(con, "SELECT COALESCE(df1.x, df2.x) FROM df1 FULL JOIN df2 ON df1.x = df2.x")
#> COALESCE(df1.x, df2.x)
#> 1 1
#> 2 2
#> 3 3
Created on 2023-02-11 with reprex v2.0.2
And it's no longer mentioned in https://www.sqlite.org/omitted.html
Metadata
Metadata
Assignees
Labels
No labels