Skip to content

Instantly share code, notes, and snippets.

@abarth500
Last active August 29, 2015 14:02
Show Gist options
  • Select an option

  • Save abarth500/817cd2719e68d2b721d0 to your computer and use it in GitHub Desktop.

Select an option

Save abarth500/817cd2719e68d2b721d0 to your computer and use it in GitHub Desktop.
[CS実験I] SELECT文の試行
--インデクスを作成しているフィールドで検索
SELECT * FROM geotag WHERE id = 7738073352;
-- 0secで結果が返ってきます
--インデクスを作成していないフィールドで検索
SELECT * FROM geotag WHERE latitude = 38.9466;
-- 14sec程度かかります
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment