On Fri, Jul 16, 2010 at 2:46 PM, PeterTucker <pthet...@gmail.com> wrote:
>
> Hi - I am something of a newbie and am a little perplexed.  When (trying to)
> modify a table I issue the following commands with subsequent errors
>
> sqldf("alter table Korea drop column code", dbname = "mydb")
> error in statement: near "drop": syntax error
>
> or
>
> sqldf("alter table Korea rename column hyr to hyrI", dbname = "mydb")
> error in statement: near "column": syntax error
>
> These are simple commands - am I missing something obvious?  I can retrieve
> data from them, and retrieve their table_info
>

SQLite does not support dropping columns. See:

   http://www.sqlite.org/lang_altertable.html

however, sqldf does support the H2 and PostgreSQL databases in
addition to sqlite so you can try one of those if this feature is
important to you.

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to