在 MonetDBLite 中将变量添加到 table

Add a variable to a table in MonetDBLite

这是MonetDBLite 数据库文件中的mtcars 数据。

library(MonetDBLite)
library(tidyverse)
library(DBI)

dbdir <- getwd()
con <- dbConnect(MonetDBLite::MonetDBLite(), dbdir)

dbWriteTable(conn = con, name = "mtcars_1", value = mtcars)

data_mt <- con %>% tbl("mtcars_1")

dbSendQuery(con, "ALTER TABLE mtcars_1 ADD COLUMN new=2")

我应该如何在 MonetDBLite 中添加一个 column/variable "new" 到 table mtcars_1?

尝试

dbSendQuery(con, "ALTER TABLE mtcars_1 ADD COLUMN new_col INTEGER DEFAULT 2")