emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* wishful thinking: using SQL to process tables. in the meantime, use R
@ 2016-07-21  1:13 dmg
  2016-07-21 17:35 ` Thierry Banel
  0 siblings, 1 reply; 2+ messages in thread
From: dmg @ 2016-07-21  1:13 UTC (permalink / raw)
  To: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 1207 bytes --]

Hi everybody,

I was wondering if there was a way to join two tables given
a common column. I searched but found nothing.

it would be awesome to be able to process tables in SQLITE.
something like this:

#+BEGIN_SRC sqlite :var a=table1 b=table2  :colnames yes
  select * from $a join $b using column;
#+END_SRC

I think it is not that hard. The infrastructure is there already.
It is just a matter of creating temp tables (this is the major part missing
which implies making a create statement from the table, but given
that sqlite is very type agnostic, it might not be hard),
load them from the CSV files
the execute the block. A db parameter might be needed
for a scratch database file, but it could be a temporary one if
none is provided.

But in the meantime, it occurred to me, it is simple in R to do the join
and might be useful to others:

#+BEGIN_SRC R :var a=table1 b=table2 :results value :colnames yes
merge(a,b,by.x="column")
#+END_SRC

merge can do left joins, right joins, full joins, joins,

https://stat.ethz.ch/R-manual/R-devel/library/base/html/merge.html

but there is nothing like the power of SQL to process tables, though.

-- 
--dmg

---
Daniel M. German
http://turingmachine.org

[-- Attachment #2: Type: text/html, Size: 3549 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: wishful thinking: using SQL to process tables. in the meantime, use R
  2016-07-21  1:13 wishful thinking: using SQL to process tables. in the meantime, use R dmg
@ 2016-07-21 17:35 ` Thierry Banel
  0 siblings, 0 replies; 2+ messages in thread
From: Thierry Banel @ 2016-07-21 17:35 UTC (permalink / raw)
  To: emacs-orgmode

[-- Attachment #1: Type: text/html, Size: 5398 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-07-21 17:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-21  1:13 wishful thinking: using SQL to process tables. in the meantime, use R dmg
2016-07-21 17:35 ` Thierry Banel

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).