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.