Re: how to specify database in join

Norbert Paul <[email protected]> Fri, 18 Mar 2011 09:45:13 +0100
Newsgroups gmane.lisp.clsql.general
Message-ID <[email protected]>
As your post was quite a time ago this may not interest you
any more.

Looking into the sources made me figure out that

   [foo bar]

constructs an attribute reference foo.bar
whereas

   ["foo" "bar"]

constructs a table reference with alias "bar"
referencing table "foo".

That "syntax" is awful and so I have just started
to write an SQL-Parser for cl-sql using CL-Yacc.

Are there already similar activities going on?

Norbert