-1

我有以下运行良好的 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 中执行相同的查询。我需要进行哪些更改才能使其正常工作?

4

1 回答 1

1

此查询中 SQLite 不支持的唯一非标准功能是CONTAINS; 将其替换为created_at LIKE '%2011-%',或者如果保证该值从年份开始,则替换为created_at LIKE '2011-%'

于 2012-11-25T11:31:53.827 回答