我有以下运行良好的 BigQuery 查询:
SELECT created_at, actor_attributes_email, type FROM [githubarchive:github.timeline]
WHERE
(repository_name="rubinius") AND
(created_at CONTAINS '2011-') AND
type !='WatchEvent'
ORDER BY created_at;
但是,现在我需要在 Sqlite3 中执行相同的查询。我需要进行哪些更改才能使其正常工作?