How to rename a date field in SQLDF without changing the format?
See my example below, where my renamed date field "dt" converts the date to a number. How can I avoid this or convert it to a date?
#Question for Stack Exchange df <- data.frame (date = c("2014-12-01","2014-12-02","2014-12-03"), acct = c(1,2,3)) df$date = as.Date(df$date) library("sqldf") sqldf(' select date as dt, date, acct from df ') dt date acct 1 16405 2014-12-01 1 2 16406 2014-12-02 2 3 16407 2014-12-03 3
source share