在Oracle中,如果我需要声明与另一列类型相同的东西,我可以简单地使用%type。
data_bin <- data_list %>%
lapply(group_by, temp_bin) %>%
lapply(function(x){summarize(x,n = nrow(x))})
data_bin[[1]]
Source: local data frame [4 x 2]
temp_bin n
1 1 14
2 2 14
3 3 14
4 4 14
Postgres中是否有等效的运算符? (我使用9.4.1)