“read.sql” function in R: Using R as an SQL browser?

后端 未结 3 1185
感动是毒
感动是毒 2021-01-14 10:28

I have a large .sql file, created as a backup from a MySQL database (containing several tables), and I would like to search elements within it from R.

Ideally, there

3条回答
  •  抹茶落季
    2021-01-14 11:25

    My workaround so far (I am also a newbie with db) is to export the database as .csv file in the phpMyAdmin (need to tick "Export tables as separate files" in the "custom" method). And then use read_csv() on tables I want to work with.

    It is not ideal because I would like to export the database and work on it on my computer with R (creating functions that will work when accessing the database that is online) and access the real database later, when I have done all my testing. But from the answers here, it seems the .sql export would not help for that anyway (?) and that I would need to recreate the db locally...

提交回复
热议问题