gpt4 book ai didi

sql - 为什么我的日期字段从 SQL 数据库作为 double 返回到 R 中

转载 作者:行者123 更新时间:2023-12-02 03:01:29 25 4
gpt4 key购买 nike

测试 dbplyr 和与数据库的连接,并且正在获取以 double 形式返回的日期

con <- DBI::dbConnect(RSQLite::SQLite(), ":memory:")

df.in <- data.frame(count = c(1:2),Date = as.Date(rep(0,2), origin = "1900-
01-01"),stringsAsFactors = FALSE)
str(df.in)
# 'data.frame': 2 obs. of 2 variables:
# $ count: int 1 2
# $ Date : Date, format: "1900-01-01" "1900-01-01"

DBI::dbWriteTable(con, "df.in", df.in, overwrite=TRUE)
df.out<- dplyr::tbl(con, "df.in")
str(df.out)
# List of 2
# $ src:List of 2
# ..$ con :Formal class 'SQLiteConnection' [package "RSQLite"] with 6
slots
# .. .. ..@ ptr :<externalptr>
# .. .. ..@ dbname : chr ":memory:"
# .. .. ..@ loadable.extensions: logi TRUE
# .. .. ..@ flags : int 70
# .. .. ..@ vfs : chr ""
# .. .. ..@ ref :<environment: 0x00000000137b7dc0>
# ..$ disco: NULL
# ..- attr(*, "class")= chr [1:3] "src_dbi" "src_sql" "src"
# $ ops:List of 2
# ..$ x :Classes 'ident', 'character' chr "df.in"
# ..$ vars: chr [1:2] "count" "Date"
# ..- attr(*, "class")= chr [1:3] "op_base_remote" "op_base" "op"
# - attr(*, "class")= chr [1:4] "tbl_dbi" "tbl_sql" "tbl_lazy" "tbl"

df.out
# Source: table<df.in> [?? x 2]
# Database: sqlite 3.19.3 [:memory:]
# count Date
# <int> <dbl>
# 1 1 -25567
# 2 2 -25567

a) df.out 是一个列表。查看返回的基础数据的最佳方法是什么,即 data.frame 或 tbl 格式的计数和日期

b) 为什么返回的是 double 而不是 date

c) 当我遇到这个问题时,我一直无法复制我最初的问题(使用 MS SQL 服务器连接),即在数据上使用 dplyr 代码时 - 其中 gameDate 已被确认为日期字段 - 进行突变我收到这个错误
df.out %>%
mutate(month=months(gameDate))

# nanodbc/nanodbc.cpp:1587: 42000: [Microsoft][SQL Server Native Client
11.0][SQL Server]'MONTHS' is not a recognized built-in function name.

有没有办法解决。我认为 dbplyr 将 dplyr 代码翻译成适当的 SQL

TIA 在上述任何一点上寻求帮助

最佳答案

这是因为,截至今天,months()矢量函数在 dbplyr 中没有针对 MSSQL 的翻译然而。好的部分如何dplyr翻译工作是它可以让你调用数据库 native 命令,在 MSSQL 中, DATENAME 函数应该做你需要的。此代码应该工作:

df.out %>%
mutate(month=datename(month, gameDate))

关于sql - 为什么我的日期字段从 SQL 数据库作为 double 返回到 R 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45851502/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com