I've a piece of Common Lisp software which deals with two SQLite3 databases and "execute-command" in order to create a VIEW which finds INTERSECTION of a common field (to name it Date) on two databases. To accomplish this task, I used:

(defparameter *first* (connect '( "/path/to/the/first/database/first.db") :pool t :database-type :sqlite3))

(execute-command "ATTACH '/path/to/the/second/database/second.db' AS S;" :database *first*)

(execute-command
     "CREATE VIEW CommonDate AS
      SELECT ATableFromFirst.Date FROM ATableFromFirst INTERSECT
      SELECT AnotherTableFromFirst.Date FROM AnotherTableFromFirst INTERSECT
      SELECT S.ATableFromSecond.Date FROM S.ATableFromSecond INTERSECT
      ...
      ... ;"
      :database *first*)

but it failed.

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.