On 5/3/2012 11:59 AM, peter korinis wrote:
is R a good query tool?

It's a programming language. It can do anything within your power to persuade the interpreter.

One of the fundamental data types in R is the data frame, which is roughly equivalent to a SQLite table.

This is an R equivalent to "SELECT * FROM MYTABLE WHERE V2 < 9":

        results <- subset(my.table, V2 < 9)

But, this is not the place for an R tutorial. Take the question up on an R mailing list if you want to learn more of its capabilities.
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to