我有一个SQL查询:
Lines <- "
Date Data
1/5/1980 25
1/7/1980 30
2/13/1980 44
4/13/1980 50"
DF <- read.table(text = Lines, header = TRUE)
此查询的结果是给我select max(run_date)
as run_date
from vv_flag
where flag = 'Y'";
。
但是,我希望结果是:
NULL