2つの別々のテーブル(同じデータベース内)からいくつかのデータを取り出し、新しく作成したテーブルにマージするMicrosoft Accessクエリがあります。SQLは次のようになります。Access SQLでSELECT ... INTOと同等のSQLite
SELECT Student_Answers.Student_Login, Student_Answers.Question_ID, Student_Answers.Status, Student_Answers.TimeStamp, Student_Answers.Student_Answer, Questions.Question_type, Questions.Question_ID INTO [tempAnswered&Unasweredwith_UI]
FROM (Questions LEFT JOIN Student_Answers ON Questions.Question_ID = Student_Answers.Question_ID)
WHERE (((Student_Answers.Student_Login)<>'10l.delbasso' Or (Student_Answers.Student_Login) Is Null));"
のSQLiteで同じクエリを実行している、それは私に語った " INTOこと"コマンドはサポートされていません。私は解決策をオンラインで見つけようとしましたが(例えば、AccessとSQLiteの間の翻訳者)、私の問題は非常に具体的であるように私は解決策を見つけることができません。もし誰かがSQLiteクエリを働かせるのを手伝ってくれたら、私はそれを感謝します。
感謝:)
可能な複製http://stackoverflow.com/questions/2027488/sqlite-select-into。 CREATE TABLE tablename AS SELECT構文を使用します。 –