I'm trying to do a simple left join using the sqldf (as I usually do):
tot3<-sqldf("select a.*, b.*
from tot2 a
left join lagd b on a.rowid = b.rowid+1")
but this time I received a message:
Error in result_create(conn@ptr, statement) : too many SQL variables
Does anybody know how can I overcome it?